hybridgroup.gobot/examples/firmata_led_brightness.go

36 lines
640 B
Go
Raw Normal View History

package main
import (
2014-07-10 07:51:00 +08:00
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/gpio"
"gobot.io/x/gobot/platforms/firmata"
)
func main() {
firmataAdaptor := firmata.NewAdaptor("/dev/ttyACM0")
led := gpio.NewLedDriver(firmataAdaptor, "3")
work := func() {
brightness := uint8(0)
2014-06-11 06:16:11 +08:00
fadeAmount := uint8(15)
2014-06-07 09:58:04 +08:00
gobot.Every(100*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-07-09 09:36:14 +08:00
robot := gobot.NewRobot("pwmBot",
[]gobot.Connection{firmataAdaptor},
[]gobot.Device{led},
work,
)
robot.Start()
}