hybridgroup.gobot/examples/particle_blink.go

29 lines
469 B
Go
Raw Normal View History

package main
import (
2014-07-10 07:51:00 +08:00
"time"
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/drivers/gpio"
"github.com/hybridgroup/gobot/platforms/particle"
)
func main() {
core := particle.NewAdaptor("device_id", "access_token")
led := gpio.NewLedDriver(core, "D7")
work := func() {
2014-05-23 12:04:47 +08:00
gobot.Every(1*time.Second, func() {
led.Toggle()
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("spark",
[]gobot.Connection{core},
2014-07-09 09:36:14 +08:00
[]gobot.Device{led},
work,
)
robot.Start()
}