mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-09 21:43:40 +00:00
c5a896771d
* machine/wioterminal: add support for wioterminal board
11 lines
139 B
Go
11 lines
139 B
Go
// +build wioterminal
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
const (
|
|
buttonMode = machine.PinInput
|
|
buttonPinChange = machine.PinFalling
|
|
)
|