hybridgroup.gobot/examples/edison_grove_button.go

41 lines
643 B
Go
Raw Normal View History

//go:build example
// +build example
//
// Do not build by default.
2015-07-10 02:50:39 +08:00
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"
2015-07-10 02:50:39 +08:00
)
func main() {
e := edison.NewAdaptor()
button := gpio.NewButtonDriver(e, "2")
2015-07-10 02:50:39 +08:00
work := func() {
_ = button.On(gpio.ButtonPush, func(data interface{}) {
2015-07-10 02:50:39 +08:00
fmt.Println("On!")
})
_ = button.On(gpio.ButtonRelease, func(data interface{}) {
2015-07-10 02:50:39 +08:00
fmt.Println("Off!")
})
}
robot := gobot.NewRobot("bot",
[]gobot.Connection{e},
[]gobot.Device{button},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
2015-07-10 02:50:39 +08:00
}