hybridgroup.gobot/examples/spark_core_led_brithgness.go

33 lines
748 B
Go
Raw Normal View History

package main
import (
"github.com/hybridgroup/gobot"
2014-05-23 12:04:47 +08:00
"github.com/hybridgroup/gobot/platforms/gpio"
"github.com/hybridgroup/gobot/platforms/spark"
"time"
)
func main() {
2014-05-23 12:04:47 +08:00
master := gobot.NewGobot()
2014-05-23 12:04:47 +08:00
sparkCore := spark.NewSparkCoreAdaptor("spark", "device_id", "access_token")
2014-06-09 09:37:14 +08:00
led := gpio.NewLedDriver(sparkCore, "led", "A1")
work := func() {
brightness := uint8(0)
2014-06-11 06:16:11 +08:00
fadeAmount := uint8(25)
2014-06-09 09:37:14 +08:00
gobot.Every(500*time.Millisecond, func() {
led.Brightness(brightness)
2014-06-11 06:16:11 +08:00
brightness = brightness + fadeAmount
if brightness == 0 || brightness == 255 {
2014-06-11 06:16:11 +08:00
fadeAmount = -fadeAmount
}
})
}
2014-05-23 12:04:47 +08:00
master.Robots = append(master.Robots,
gobot.NewRobot("spark", []gobot.Connection{sparkCore}, []gobot.Device{led}, work))
2014-05-23 12:04:47 +08:00
master.Start()
}