1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-29 13:49:14 +08:00

47 lines
878 B
Go
Raw Normal View History

2014-10-16 10:59:23 -05:00
/*
2014-10-28 14:52:59 -07:00
Package beaglebone provides the Gobot adaptor for the Beaglebone Black.
2014-10-16 10:59:23 -05:00
Installing:
2014-10-28 14:52:59 -07:00
go get github.com/hybridgroup/platforms/gobot/beaglebone
2014-10-16 10:59:23 -05:00
Example:
package main
import (
"time"
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/platforms/beaglebone"
"github.com/hybridgroup/gobot/drivers/gpio"
2014-10-16 10:59:23 -05:00
)
func main() {
gbot := gobot.NewGobot()
beagleboneAdaptor := beaglebone.NewAdaptor()
led := gpio.NewLedDriver(beagleboneAdaptor, "P9_12")
2014-10-16 10:59:23 -05:00
work := func() {
gobot.Every(1*time.Second, func() {
led.Toggle()
})
}
robot := gobot.NewRobot("blinkBot",
[]gobot.Connection{beagleboneAdaptor},
[]gobot.Device{led},
work,
)
gbot.AddRobot(robot)
gbot.Start()
}
For more information refer to the beaglebone README:
https://github.com/hybridgroup/gobot/blob/master/platforms/beaglebone/README.md
*/
package beaglebone