hybridgroup.gobot/examples/beaglebone_blink_usr_led.go

33 lines
504 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
2014-09-18 06:20:08 +08:00
package main
import (
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/beaglebone"
2014-09-18 06:20:08 +08:00
)
func main() {
beagleboneAdaptor := beaglebone.NewAdaptor()
led := gpio.NewLedDriver(beagleboneAdaptor, "usr1")
2014-09-18 06:20:08 +08:00
work := func() {
gobot.Every(1*time.Second, func() {
led.Toggle()
})
}
robot := gobot.NewRobot("blinkBot",
[]gobot.Connection{beagleboneAdaptor},
[]gobot.Device{led},
work,
)
robot.Start()
2014-09-18 06:20:08 +08:00
}