mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-16 10:43:29 +00:00
13 lines
211 B
Go
13 lines
211 B
Go
//go:build arduino_mega1280
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
var (
|
|
// Configuration on an Arduino Uno.
|
|
pwm = machine.Timer3
|
|
pinA = machine.PH3 // pin 6 on the Mega
|
|
pinB = machine.PH4 // pin 7 on the Mega
|
|
)
|