37 lines
682 B
Go
37 lines
682 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/drivers/gpio"
|
|
"github.com/hybridgroup/gobot/platforms/beaglebone"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
|
|
beagleboneAdaptor := beaglebone.NewAdaptor()
|
|
button := gpio.NewMakeyButtonDriver(beagleboneAdaptor, "P8_9")
|
|
|
|
work := func() {
|
|
button.On(gpio.ButtonPush, func(data interface{}) {
|
|
fmt.Println("button pressed")
|
|
})
|
|
|
|
button.On(gpio.ButtonRelease, func(data interface{}) {
|
|
fmt.Println("button released")
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("makeyBot",
|
|
[]gobot.Connection{beagleboneAdaptor},
|
|
[]gobot.Device{button},
|
|
work,
|
|
)
|
|
|
|
gbot.AddRobot(robot)
|
|
|
|
gbot.Start()
|
|
}
|