2014-04-26 03:11:51 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-07-09 16:51:00 -07:00
|
|
|
"time"
|
|
|
|
|
2014-04-26 03:11:51 -07:00
|
|
|
"github.com/hybridgroup/gobot"
|
2016-10-03 16:58:43 +02:00
|
|
|
"github.com/hybridgroup/gobot/drivers/gpio"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/particle"
|
2014-04-26 03:11:51 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 16:58:43 +02:00
|
|
|
core := particle.NewAdaptor("device_id", "access_token")
|
|
|
|
led := gpio.NewLedDriver(core, "D7")
|
2014-04-26 03:11:51 -07:00
|
|
|
|
|
|
|
work := func() {
|
2014-05-22 21:04:47 -07:00
|
|
|
gobot.Every(1*time.Second, func() {
|
2014-04-26 03:11:51 -07:00
|
|
|
led.Toggle()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-08 18:36:14 -07:00
|
|
|
robot := gobot.NewRobot("spark",
|
2016-10-03 16:58:43 +02:00
|
|
|
[]gobot.Connection{core},
|
2014-07-08 18:36:14 -07:00
|
|
|
[]gobot.Device{led},
|
|
|
|
work,
|
|
|
|
)
|
2014-04-26 03:11:51 -07:00
|
|
|
|
2016-10-18 21:08:25 +02:00
|
|
|
robot.Start()
|
2014-04-26 03:11:51 -07:00
|
|
|
}
|