mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-26 13:48:49 +08:00
32 lines
676 B
Go
32 lines
676 B
Go
![]() |
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"gobot.io/x/gobot"
|
||
|
"gobot.io/x/gobot/drivers/gpio"
|
||
|
"gobot.io/x/gobot/platforms/dragonboard"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
dragonAdaptor := chip.NewAdaptor()
|
||
|
button := gpio.NewButtonDriver(dragonAdaptor, "GPIO_A")
|
||
|
|
||
|
work := func() {
|
||
|
gobot.On(button.Event("push"), func(data interface{}) {
|
||
|
fmt.Println("button pressed")
|
||
|
})
|
||
|
|
||
|
gobot.On(button.Event("release"), func(data interface{}) {
|
||
|
fmt.Println("button released")
|
||
|
})
|
||
|
}
|
||
|
|
||
|
robot := gobot.NewRobot("buttonBot",
|
||
|
[]gobot.Connection{chipAdaptor},
|
||
|
[]gobot.Device{button},
|
||
|
work,
|
||
|
)
|
||
|
|
||
|
robot.Start()
|
||
|
}
|