2016-02-04 05:51:25 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hybridgroup/gobot"
|
2016-10-03 22:58:43 +08:00
|
|
|
"github.com/hybridgroup/gobot/drivers/gpio"
|
2016-02-04 05:51:25 +08:00
|
|
|
"github.com/hybridgroup/gobot/platforms/chip"
|
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-16 02:02:54 +08:00
|
|
|
gbot := gobot.NewMaster()
|
2016-02-04 05:51:25 +08:00
|
|
|
|
2016-10-03 22:58:43 +08:00
|
|
|
chipAdaptor := chip.NewAdaptor()
|
|
|
|
button := gpio.NewButtonDriver(chipAdaptor, "XIO-P6")
|
|
|
|
led := gpio.NewLedDriver(chipAdaptor, "XIO-P7")
|
2016-02-04 05:51:25 +08:00
|
|
|
|
|
|
|
work := func() {
|
2016-09-01 18:17:43 +08:00
|
|
|
button.On(gpio.ButtonPush, func(data interface{}) {
|
2016-02-04 05:51:25 +08:00
|
|
|
led.On()
|
|
|
|
})
|
|
|
|
|
2016-09-01 18:17:43 +08:00
|
|
|
button.On(gpio.ButtonRelease, func(data interface{}) {
|
2016-02-04 05:51:25 +08:00
|
|
|
led.Off()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("buttonBot",
|
|
|
|
[]gobot.Connection{chipAdaptor},
|
|
|
|
[]gobot.Device{button, led},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
|
|
}
|