mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-26 13:48:49 +08:00
34 lines
681 B
Go
34 lines
681 B
Go
package main
|
|
|
|
import (
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/platforms/chip"
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
|
)
|
|
|
|
func main() {
|
|
gbot := gobot.NewGobot()
|
|
|
|
chipAdaptor := chip.NewChipAdaptor("chip")
|
|
button := gpio.NewButtonDriver(chipAdaptor, "button", "XIO-P6")
|
|
led := gpio.NewLedDriver(chipAdaptor, "led", "XIO-P7")
|
|
|
|
work := func() {
|
|
button.On(gpio.ButtonPush, func(data interface{}) {
|
|
led.On()
|
|
})
|
|
|
|
button.On(gpio.ButtonRelease, func(data interface{}) {
|
|
led.Off()
|
|
})
|
|
}
|
|
|
|
robot := gobot.NewRobot("buttonBot",
|
|
[]gobot.Connection{chipAdaptor},
|
|
[]gobot.Device{button, led},
|
|
work,
|
|
)
|
|
gbot.AddRobot(robot)
|
|
gbot.Start()
|
|
}
|