2014-04-26 18:11:51 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-07-10 07:51:00 +08:00
|
|
|
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/drivers/gpio"
|
|
|
|
"gobot.io/x/gobot/platforms/firmata"
|
2014-04-26 18:11:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
firmataAdaptor := firmata.NewAdaptor("/dev/ttyACM0")
|
|
|
|
sensor := gpio.NewAnalogSensorDriver(firmataAdaptor, "0")
|
|
|
|
led := gpio.NewLedDriver(firmataAdaptor, "3")
|
2014-04-26 18:11:51 +08:00
|
|
|
|
|
|
|
work := func() {
|
2016-09-01 18:17:43 +08:00
|
|
|
sensor.On(gpio.Data, func(data interface{}) {
|
2014-07-11 08:21:21 +08:00
|
|
|
brightness := uint8(
|
|
|
|
gobot.ToScale(gobot.FromScale(float64(data.(int)), 0, 1024), 0, 255),
|
|
|
|
)
|
2014-06-29 08:18:16 +08:00
|
|
|
fmt.Println("sensor", data)
|
2014-04-26 18:11:51 +08:00
|
|
|
fmt.Println("brightness", brightness)
|
|
|
|
led.Brightness(brightness)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-09 09:36:14 +08:00
|
|
|
robot := gobot.NewRobot("sensorBot",
|
|
|
|
[]gobot.Connection{firmataAdaptor},
|
|
|
|
[]gobot.Device{sensor, led},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
robot.Start()
|
2014-04-26 18:11:51 +08:00
|
|
|
}
|