hybridgroup.gobot/examples/firmata_led_brightness.go

40 lines
752 B
Go
Raw Normal View History

package main
import (
2014-07-10 07:51:00 +08:00
"time"
"github.com/hybridgroup/gobot"
2014-05-23 10:22:14 +08:00
"github.com/hybridgroup/gobot/platforms/firmata"
"github.com/hybridgroup/gobot/platforms/gpio"
)
func main() {
2014-05-23 10:22:14 +08:00
gbot := gobot.NewGobot()
2014-07-09 09:36:14 +08:00
2014-05-23 10:22:14 +08:00
firmataAdaptor := firmata.NewFirmataAdaptor("firmata", "/dev/ttyACM0")
2014-07-10 07:51:00 +08:00
led := gpio.NewLedDriver(firmataAdaptor, "led", "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,
)
2014-07-09 09:36:14 +08:00
gbot.AddRobot(robot)
gbot.Start()
}