2014-04-26 03:11:51 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hybridgroup/gobot"
|
2014-05-22 21:04:47 -07:00
|
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/spark"
|
2014-04-26 03:11:51 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-07-08 18:36:14 -07:00
|
|
|
gbot := gobot.NewGobot()
|
2014-04-26 03:11:51 -07:00
|
|
|
|
2014-05-22 21:04:47 -07:00
|
|
|
sparkCore := spark.NewSparkCoreAdaptor("spark", "device_id", "access_token")
|
2014-07-08 18:36:14 -07:00
|
|
|
led := gpio.NewLedDriver("led", sparkCore, "D7")
|
2014-06-08 18:37:14 -07:00
|
|
|
button := gpio.NewButtonDriver(sparkCore, "button", "D5")
|
2014-04-26 03:11:51 -07:00
|
|
|
|
|
|
|
work := func() {
|
2014-07-08 18:36:14 -07:00
|
|
|
gobot.On(button.Event("push"), func(data interface{}) {
|
2014-04-26 03:11:51 -07:00
|
|
|
led.On()
|
|
|
|
})
|
|
|
|
|
2014-07-08 18:36:14 -07:00
|
|
|
gobot.On(button.Event("release"), func(data interface{}) {
|
2014-04-26 03:11:51 -07:00
|
|
|
led.Off()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-08 18:36:14 -07:00
|
|
|
robot := gobot.NewRobot("spark",
|
|
|
|
[]gobot.Connection{sparkCore},
|
|
|
|
[]gobot.Device{button, led},
|
|
|
|
work,
|
|
|
|
)
|
2014-04-26 03:11:51 -07:00
|
|
|
|
2014-07-08 18:36:14 -07:00
|
|
|
gbot.AddRobot(robot)
|
|
|
|
|
|
|
|
gbot.Start()
|
2014-04-26 03:11:51 -07:00
|
|
|
}
|