1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-24 13:48:49 +08:00
hybridgroup.gobot/examples/particle_led_brightness.go

55 lines
977 B
Go
Raw Permalink Normal View History

//go:build example
// +build example
//
// Do not build by default.
/*
To run this example, pass the device ID as first param,
and the access token as the second param:
go run examples/particle_led_brightness.go mydevice myaccesstoken
*/
package main
import (
"fmt"
"os"
2014-07-09 16:51:00 -07:00
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/gpio"
"gobot.io/x/gobot/v2/platforms/particle"
)
func main() {
core := particle.NewAdaptor(os.Args[1], os.Args[2])
led := gpio.NewLedDriver(core, "A1")
work := func() {
brightness := uint8(0)
2014-06-10 15:16:11 -07:00
fadeAmount := uint8(25)
2014-06-08 18:37:14 -07:00
gobot.Every(500*time.Millisecond, func() {
if err := led.Brightness(brightness); err != nil {
fmt.Println(err)
}
2014-06-10 15:16:11 -07:00
brightness = brightness + fadeAmount
if brightness == 0 || brightness == 255 {
2014-06-10 15:16:11 -07:00
fadeAmount = -fadeAmount
}
})
}
2014-07-08 18:36:14 -07:00
robot := gobot.NewRobot("spark",
[]gobot.Connection{core},
2014-07-08 18:36:14 -07:00
[]gobot.Device{led},
work,
)
if err := robot.Start(); err != nil {
panic(err)
}
}