1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/examples/beaglebone_blink.go

33 lines
571 B
Go
Raw Normal View History

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