2014-04-26 18:11:51 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/hybridgroup/gobot"
|
2014-05-23 10:32:09 +08:00
|
|
|
"github.com/hybridgroup/gobot/platforms/beaglebone"
|
|
|
|
"github.com/hybridgroup/gobot/platforms/gpio"
|
|
|
|
"time"
|
2014-04-26 18:11:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2014-05-23 10:32:09 +08:00
|
|
|
gbot := gobot.NewGobot()
|
|
|
|
beagleboneAdaptor := beaglebone.NewBeagleboneAdaptor("beaglebone")
|
|
|
|
led := gpio.NewLedDriver(beagleboneAdaptor, "led", "P9_14")
|
2014-04-26 18:11:51 +08:00
|
|
|
|
|
|
|
work := func() {
|
|
|
|
brightness := uint8(0)
|
|
|
|
fade_amount := uint8(5)
|
|
|
|
|
2014-06-07 04:18:07 +08:00
|
|
|
gobot.Every(100*time.Millisecond, func() {
|
2014-04-26 18:11:51 +08:00
|
|
|
led.Brightness(brightness)
|
|
|
|
brightness = brightness + fade_amount
|
|
|
|
if brightness == 0 || brightness == 255 {
|
|
|
|
fade_amount = -fade_amount
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-05-23 10:32:09 +08:00
|
|
|
gbot.Robots = append(gbot.Robots,
|
|
|
|
gobot.NewRobot("pwmBot", []gobot.Connection{beagleboneAdaptor}, []gobot.Device{led}, work))
|
|
|
|
gbot.Start()
|
2014-04-26 18:11:51 +08:00
|
|
|
}
|