mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-09 21:43:40 +00:00
13 lines
201 B
Go
13 lines
201 B
Go
//go:build arduino
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
var (
|
|
// Configuration on an Arduino Uno.
|
|
pwm = machine.Timer2
|
|
pinA = machine.PB3 // pin 11 on the Uno
|
|
pinB = machine.PD3 // pin 3 on the Uno
|
|
)
|