11 строки
174 Б
Go
11 строки
174 Б
Go
//go:build wioterminal
|
|
|
|
package main
|
|
|
|
import "machine"
|
|
|
|
const (
|
|
button = machine.BUTTON
|
|
buttonMode = machine.PinInput
|
|
buttonPinChange = machine.PinFalling
|
|
)
|