hybridgroup.gobot/platforms/beaglebone/doc.go

47 lines
909 B
Go
Raw Normal View History

2014-10-16 23:59:23 +08:00
/*
2014-10-29 05:52:59 +08:00
Package beaglebone provides the Gobot adaptor for the Beaglebone Black.
2014-10-16 23:59:23 +08:00
Installing:
2014-10-29 05:52:59 +08:00
go get github.com/hybridgroup/platforms/gobot/beaglebone
2014-10-16 23:59:23 +08:00
Example:
package main
import (
"time"
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/platforms/beaglebone"
"github.com/hybridgroup/gobot/platforms/gpio"
)
func main() {
gbot := gobot.NewGobot()
beagleboneAdaptor := beaglebone.NewBeagleboneAdaptor("beaglebone")
led := gpio.NewLedDriver(beagleboneAdaptor, "led", "P9_12")
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