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

14 lines
190 B
Go

//go:build stm32f4disco
package main
import "machine"
var (
// These pins correspond to LEDs on the discovery
// board
pwm = &machine.TIM4
pinA = machine.PD12
pinB = machine.PD13
)