mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-26 13:48:49 +08:00
38 lines
565 B
Go
38 lines
565 B
Go
//go:build example
|
|
// +build example
|
|
|
|
//
|
|
// Do not build by default.
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"gobot.io/x/gobot/v2/drivers/gpio"
|
|
"gobot.io/x/gobot/v2/platforms/intel-iot/edison"
|
|
)
|
|
|
|
func main() {
|
|
e := edison.NewAdaptor()
|
|
e.Connect()
|
|
|
|
led := gpio.NewLedDriver(e, "13")
|
|
led.Start()
|
|
led.Off()
|
|
|
|
button := gpio.NewButtonDriver(e, "5")
|
|
button.Start()
|
|
|
|
buttonEvents := button.Subscribe()
|
|
for {
|
|
select {
|
|
case event := <-buttonEvents:
|
|
fmt.Println("Event:", event.Name, event.Data)
|
|
if event.Name == gpio.ButtonPush {
|
|
led.Toggle()
|
|
}
|
|
}
|
|
}
|
|
}
|