hybridgroup.gobot/examples/beaglebone_blink.go

33 lines
505 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
2014-04-28 19:39:51 +08:00
package main
import (
2014-07-10 07:51:00 +08:00
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/beaglebone"
2014-04-28 19:39:51 +08:00
)
func main() {
beagleboneAdaptor := beaglebone.NewAdaptor()
led := gpio.NewLedDriver(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,
)
robot.Start()
2014-04-28 19:39:51 +08:00
}