46 lines
769 B
Go
46 lines
769 B
Go
//go:build example
|
|
// +build example
|
|
|
|
//
|
|
// Do not build by default.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gobot.io/x/gobot/v2"
|
|
"gobot.io/x/gobot/v2/drivers/gpio"
|
|
"gobot.io/x/gobot/v2/platforms/intel-iot/edison"
|
|
)
|
|
|
|
func main() {
|
|
e := edison.NewAdaptor()
|
|
|
|
button := gpio.NewButtonDriver(e, "5")
|
|
led := gpio.NewLedDriver(e, "13")
|
|
|
|
work := func() {
|
|
_ = button.On(gpio.ButtonPush, func(data interface{}) {
|
|
if err := led.On(); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
})
|
|
_ = button.On(gpio.ButtonRelease, func(data interface{}) {
|
|
if err := led.Off(); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("buttonBot",
|
|
[]gobot.Connection{e},
|
|
[]gobot.Device{led, button},
|
|
work,
|
|
)
|
|
|
|
if err := robot.Start(); err != nil {
|
|
panic(err)
|
|
}
|
|
}
|