mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-11 14:33:41 +00:00
12 lines
122 B
Go
12 lines
122 B
Go
// +build bluepill
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
var (
|
|
pwm = &machine.TIM2
|
|
pinA = machine.PA0
|
|
pinB = machine.PA1
|
|
)
|