mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-09 21:43:40 +00:00
12 lines
190 B
Go
12 lines
190 B
Go
//go:build circuitplay_express
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
const (
|
|
button = machine.BUTTON
|
|
buttonMode = machine.PinInputPulldown
|
|
buttonPinChange = machine.PinFalling
|
|
)
|