mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 03:27:48 +00:00
11 lines
155 B
Go
11 lines
155 B
Go
// +build circuitplay_express
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
const (
|
|
buttonMode = machine.PinInputPulldown
|
|
buttonPinChange = machine.PinFalling
|
|
)
|