tinygo/src/machine/machine.go
Ayke van Laethem 62c4c5e90b
go fmt
2018-08-17 23:23:20 +02:00

17 строки
170 Б
Go

package machine
type GPIOConfig struct {
Mode GPIOMode
}
type GPIO struct {
Pin uint8
}
func (p GPIO) High() {
p.Set(true)
}
func (p GPIO) Low() {
p.Set(false)
}