1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-24 13:48:49 +08:00
hybridgroup.gobot/examples/beaglebone_button.go

41 lines
721 B
Go
Raw Normal View History

//go:build example
// +build example
//
// Do not build by default.
package main
import (
"fmt"
2014-07-10 17:21:21 -07:00
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/beaglebone"
)
func main() {
beagleboneAdaptor := beaglebone.NewAdaptor()
button := gpio.NewButtonDriver(beagleboneAdaptor, "P8_09")
work := func() {
_ = button.On(gpio.ButtonPush, func(data interface{}) {
fmt.Println("button pressed")
})
_ = button.On(gpio.ButtonRelease, func(data interface{}) {
fmt.Println("button released")
})
}
2014-07-08 18:36:14 -07:00
robot := gobot.NewRobot("buttonBot",
[]gobot.Connection{beagleboneAdaptor},
[]gobot.Device{button},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}