2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2016-08-30 19:27:50 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-10-03 22:58:43 +08:00
|
|
|
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot/drivers/gpio"
|
|
|
|
"gobot.io/x/gobot/platforms/intel-iot/edison"
|
2016-08-30 19:27:50 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
e := edison.NewAdaptor()
|
2016-08-30 19:27:50 +08:00
|
|
|
e.Connect()
|
|
|
|
|
2016-10-18 17:31:40 +08:00
|
|
|
led := gpio.NewLedDriver(e, "13")
|
|
|
|
led.Start()
|
2016-08-30 19:27:50 +08:00
|
|
|
led.Off()
|
|
|
|
|
2016-10-18 17:31:40 +08:00
|
|
|
button := gpio.NewButtonDriver(e, "5")
|
|
|
|
button.Start()
|
|
|
|
|
2016-08-30 19:27:50 +08:00
|
|
|
buttonEvents := button.Subscribe()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case event := <-buttonEvents:
|
|
|
|
fmt.Println("Event:", event.Name, event.Data)
|
2016-09-01 18:17:43 +08:00
|
|
|
if event.Name == gpio.ButtonPush {
|
2016-08-30 19:27:50 +08:00
|
|
|
led.Toggle()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|