2014-04-26 18:11:51 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"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")
|
2014-04-26 18:11:51 +08:00
|
|
|
|
2014-05-23 10:32:09 +08:00
|
|
|
sensor := gpio.NewAnalogSensorDriver(beagleboneAdaptor, "sensor", "P9_33")
|
|
|
|
led := gpio.NewLedDriver(beagleboneAdaptor, "led", "P9_14")
|
2014-04-26 18:11:51 +08:00
|
|
|
|
|
|
|
work := func() {
|
2014-05-23 10:32:09 +08:00
|
|
|
gobot.Every(0.1*time.Second, func() {
|
2014-04-26 18:11:51 +08:00
|
|
|
val := sensor.Read()
|
2014-04-28 19:39:51 +08:00
|
|
|
brightness := uint8(gpio.ToPwm(val))
|
2014-04-26 18:11:51 +08:00
|
|
|
fmt.Println("sensor", val)
|
|
|
|
fmt.Println("brightness", brightness)
|
|
|
|
led.Brightness(brightness)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-05-23 10:32:09 +08:00
|
|
|
gbot.Robots = append(gbot.Robots,
|
|
|
|
gobot.NewRobot("sensorBot", []gobot.Connection{beagleboneAdaptor}, []gobot.Device{sensor, led}, work))
|
|
|
|
gbot.Start()
|
2014-04-26 18:11:51 +08:00
|
|
|
}
|