hybridgroup.gobot/platforms/beaglebone/doc.go

43 lines
827 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/drivers/gpio"
"github.com/hybridgroup/gobot/platforms/beaglebone"
2014-10-16 23:59:23 +08:00
)
func main() {
beagleboneAdaptor := beaglebone.NewAdaptor()
led := gpio.NewLedDriver(beagleboneAdaptor, "P9_12")
2014-10-16 23:59:23 +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-10-16 23:59:23 +08:00
}
For more information refer to the beaglebone README:
https://github.com/hybridgroup/gobot/blob/master/platforms/beaglebone/README.md
*/
package beaglebone