31 lines
731 B
Go
31 lines
731 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/hybridgroup/gobot"
|
||
|
"github.com/hybridgroup/gobot/platforms/beaglebone"
|
||
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
gbot := gobot.NewGobot()
|
||
|
|
||
|
beagleboneAdaptor := beaglebone.NewBeagleboneAdaptor("beaglebone")
|
||
|
led := gpio.NewDirectPinDriver(beagleboneAdaptor, "led", "P8_10")
|
||
|
button := gpio.NewDirectPinDriver(beagleboneAdaptor, "button", "P8_9")
|
||
|
|
||
|
work := func() {
|
||
|
gobot.Every(500*time.Millisecond, func() {
|
||
|
if button.DigitalRead() == 1 {
|
||
|
led.DigitalWrite(1)
|
||
|
} else {
|
||
|
led.DigitalWrite(0)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
gbot.Robots = append(gbot.Robots,
|
||
|
gobot.NewRobot("pinBot", []gobot.Connection{beagleboneAdaptor}, []gobot.Device{led}, work))
|
||
|
gbot.Start()
|
||
|
}
|