2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2014-06-29 02:05:17 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-07-11 08:21:21 +08:00
|
|
|
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/drivers/gpio"
|
|
|
|
"gobot.io/x/gobot/platforms/beaglebone"
|
2014-06-29 02:05:17 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
beagleboneAdaptor := beaglebone.NewAdaptor()
|
2018-02-14 02:36:40 +08:00
|
|
|
button := gpio.NewButtonDriver(beagleboneAdaptor, "P8_09")
|
2014-06-29 02:05:17 +08:00
|
|
|
|
|
|
|
work := func() {
|
2016-09-01 18:17:43 +08:00
|
|
|
button.On(gpio.ButtonPush, func(data interface{}) {
|
2014-06-29 02:05:17 +08:00
|
|
|
fmt.Println("button pressed")
|
|
|
|
})
|
|
|
|
|
2016-09-01 18:17:43 +08:00
|
|
|
button.On(gpio.ButtonRelease, func(data interface{}) {
|
2014-06-29 02:05:17 +08:00
|
|
|
fmt.Println("button released")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-09 09:36:14 +08:00
|
|
|
robot := gobot.NewRobot("buttonBot",
|
|
|
|
[]gobot.Connection{beagleboneAdaptor},
|
|
|
|
[]gobot.Device{button},
|
|
|
|
work,
|
|
|
|
)
|
2016-10-19 03:08:25 +08:00
|
|
|
|
|
|
|
robot.Start()
|
2014-06-29 02:05:17 +08:00
|
|
|
}
|