hybridgroup.gobot/examples/edison_button.go

36 lines
584 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
package main
import (
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/intel-iot/edison"
)
func main() {
e := edison.NewAdaptor()
button := gpio.NewButtonDriver(e, "5")
led := gpio.NewLedDriver(e, "13")
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{e},
[]gobot.Device{led, button},
work,
)
robot.Start()
}