2015-10-23 07:56:03 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2016-09-01 19:32:40 +08:00
|
|
|
"github.com/hybridgroup/gobot"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/intel-iot/edison"
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-09-01 19:32:40 +08:00
|
|
|
"github.com/hybridgroup/gobot/api"
|
2015-10-23 07:56:03 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-09-01 19:32:40 +08:00
|
|
|
gbot := gobot.NewGobot()
|
|
|
|
api.NewAPI(gbot).Start()
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-09-01 19:32:40 +08:00
|
|
|
e := edison.NewEdisonAdaptor("edison")
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-09-01 19:32:40 +08:00
|
|
|
button := gpio.NewButtonDriver(e, "myButton", "2")
|
|
|
|
led := gpio.NewLedDriver(e, "myLed", "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-09-01 19:32:40 +08:00
|
|
|
gbot.AddRobot(robot)
|
2015-10-23 07:56:03 +08:00
|
|
|
|
2016-09-01 19:32:40 +08:00
|
|
|
gbot.Start()
|
2015-10-23 07:56:03 +08:00
|
|
|
}
|