1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/examples/edison_grove_button.go

38 lines
572 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
2015-07-09 11:50:39 -07:00
package main
import (
"fmt"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/intel-iot/edison"
2015-07-09 11:50:39 -07:00
)
func main() {
e := edison.NewAdaptor()
button := gpio.NewGroveButtonDriver(e, "2")
2015-07-09 11:50:39 -07:00
work := func() {
button.On(gpio.ButtonPush, func(data interface{}) {
2015-07-09 11:50:39 -07:00
fmt.Println("On!")
})
button.On(gpio.ButtonRelease, func(data interface{}) {
2015-07-09 11:50:39 -07:00
fmt.Println("Off!")
})
}
robot := gobot.NewRobot("bot",
[]gobot.Connection{e},
[]gobot.Device{button},
work,
)
robot.Start()
2015-07-09 11:50:39 -07:00
}