mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-07 20:43:40 +00:00
12 lines
171 B
Go
12 lines
171 B
Go
//go:build arduino
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
const (
|
|
button = machine.D2
|
|
buttonMode = machine.PinInputPullup
|
|
buttonPinChange = machine.PinRising
|
|
)
|