2014-04-26 18:11:51 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hybridgroup/gobot"
|
2014-04-30 04:20:32 +08:00
|
|
|
"github.com/hybridgroup/gobot/platforms/firmata"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
|
|
|
"time"
|
2014-04-26 18:11:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-04-30 04:20:32 +08:00
|
|
|
gbot := gobot.NewGobot()
|
2014-04-26 18:11:51 +08:00
|
|
|
|
2014-04-30 04:20:32 +08:00
|
|
|
firmataAdaptor := firmata.NewFirmataAdaptor("myFirmata", "/dev/ttyACM0")
|
2014-04-26 18:11:51 +08:00
|
|
|
|
2014-04-30 04:20:32 +08:00
|
|
|
button := gpio.NewButtonDriver(firmataAdaptor, "myButton", "2")
|
|
|
|
led := gpio.NewLedDriver(firmataAdaptor, "myLed", "13")
|
2014-04-26 18:11:51 +08:00
|
|
|
|
|
|
|
work := func() {
|
2014-05-23 10:22:14 +08:00
|
|
|
gobot.Every(1*time.Second, func() {
|
2014-04-30 04:20:32 +08:00
|
|
|
led.Toggle()
|
|
|
|
})
|
2014-05-23 10:22:14 +08:00
|
|
|
gobot.On(button.Events["push"], func(data interface{}) {
|
2014-04-26 18:11:51 +08:00
|
|
|
led.On()
|
|
|
|
})
|
2014-05-23 10:22:14 +08:00
|
|
|
gobot.On(button.Events["release"], func(data interface{}) {
|
2014-04-26 18:11:51 +08:00
|
|
|
led.Off()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-04-30 04:20:32 +08:00
|
|
|
gbot.Robots = append(gbot.Robots,
|
2014-05-23 10:22:14 +08:00
|
|
|
gobot.NewRobot("buttonBot", []robot.Connection{firmataAdaptor}, []robot.Device{button, led}, work),
|
2014-04-30 04:20:32 +08:00
|
|
|
)
|
2014-04-26 18:11:51 +08:00
|
|
|
|
2014-04-30 04:20:32 +08:00
|
|
|
gbot.Start()
|
2014-04-26 18:11:51 +08:00
|
|
|
}
|