2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2015-10-23 07:56:03 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/drivers/gpio"
|
|
|
|
"gobot.io/x/gobot/platforms/intel-iot/edison"
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot/api"
|
2015-10-23 07:56:03 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-19 03:08:25 +08:00
|
|
|
master := gobot.NewMaster()
|
|
|
|
api.NewAPI(master).Start()
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-10-03 22:58:43 +08:00
|
|
|
e := edison.NewAdaptor()
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-10-03 22:58:43 +08:00
|
|
|
button := gpio.NewButtonDriver(e, "2")
|
|
|
|
led := gpio.NewLedDriver(e, "4")
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-09-01 19:32:40 +08:00
|
|
|
work := func() {
|
|
|
|
button.On(gpio.ButtonPush, func(data interface{}) {
|
|
|
|
led.On()
|
|
|
|
})
|
|
|
|
button.On(gpio.ButtonRelease, func(data interface{}) {
|
|
|
|
led.Off()
|
|
|
|
})
|
|
|
|
}
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-09-01 19:32:40 +08:00
|
|
|
robot := gobot.NewRobot("buttonBot",
|
|
|
|
[]gobot.Connection{e},
|
|
|
|
[]gobot.Device{led, button},
|
|
|
|
work,
|
|
|
|
)
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
master.AddRobot(robot)
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
master.Start()
|
2015-10-23 07:56:03 +08:00
|
|
|
}
|