Files
tinygo/src/examples/pwm/feather-m4.go
T
2022-12-19 23:20:11 +01:00

12 lines
124 B
Go

//go:build feather_m4
package main
import "machine"
var (
pwm = machine.TCC0
pinA = machine.D12
pinB = machine.D13
)