2014-04-28 19:39:51 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hybridgroup/gobot"
|
2014-05-23 10:32:09 +08:00
|
|
|
"github.com/hybridgroup/gobot/platforms/beaglebone"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
|
|
|
"time"
|
2014-04-28 19:39:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-05-23 10:32:09 +08:00
|
|
|
gbot := gobot.NewGobot()
|
2014-04-28 19:39:51 +08:00
|
|
|
|
2014-05-23 10:32:09 +08:00
|
|
|
beagleboneAdaptor := beaglebone.NewBeagleboneAdaptor("beaglebone")
|
2014-07-09 09:36:14 +08:00
|
|
|
led := gpio.NewLedDriver("led", beagleboneAdaptor, "P9_12")
|
2014-04-28 19:39:51 +08:00
|
|
|
|
|
|
|
work := func() {
|
2014-05-23 10:32:09 +08:00
|
|
|
gobot.Every(1*time.Second, func() {
|
2014-04-28 19:39:51 +08:00
|
|
|
led.Toggle()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-09 09:36:14 +08:00
|
|
|
robot := gobot.NewRobot("blinkBot",
|
|
|
|
[]gobot.Connection{beagleboneAdaptor},
|
|
|
|
[]gobot.Device{led},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
|
2014-05-23 10:32:09 +08:00
|
|
|
gbot.Start()
|
2014-04-28 19:39:51 +08:00
|
|
|
}
|