hybridgroup.gobot/examples/chip_button_led.go

36 lines
619 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
2016-02-04 05:51:25 +08:00
package main
import (
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/chip"
2016-02-04 05:51:25 +08:00
)
func main() {
chipAdaptor := chip.NewAdaptor()
button := gpio.NewButtonDriver(chipAdaptor, "XIO-P6")
led := gpio.NewLedDriver(chipAdaptor, "XIO-P7")
2016-02-04 05:51:25 +08:00
work := func() {
button.On(gpio.ButtonPush, func(data interface{}) {
2016-02-04 05:51:25 +08:00
led.On()
})
button.On(gpio.ButtonRelease, func(data interface{}) {
2016-02-04 05:51:25 +08:00
led.Off()
})
}
robot := gobot.NewRobot("buttonBot",
[]gobot.Connection{chipAdaptor},
[]gobot.Device{button, led},
work,
)
robot.Start()
2016-02-04 05:51:25 +08:00
}