mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-08 13:03:39 +00:00
12 lines
124 B
Go
12 lines
124 B
Go
//go:build feather_m4
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
var (
|
|
pwm = machine.TCC0
|
|
pinA = machine.D12
|
|
pinB = machine.D13
|
|
)
|