2014-09-19 03:45:54 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
2016-12-20 20:25:22 +08:00
|
|
|
"gobot.io/x/gobot/drivers/aio"
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot/drivers/gpio"
|
|
|
|
"gobot.io/x/gobot/platforms/intel-iot/edison"
|
2014-09-19 03:45:54 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
e := edison.NewAdaptor()
|
2016-12-20 20:25:22 +08:00
|
|
|
sensor := aio.NewAnalogSensorDriver(e, "0")
|
2016-10-03 22:58:43 +08:00
|
|
|
led := gpio.NewLedDriver(e, "3")
|
2014-09-19 03:45:54 +08:00
|
|
|
|
|
|
|
work := func() {
|
2016-12-20 20:25:22 +08:00
|
|
|
sensor.On(aio.Data, func(data interface{}) {
|
2014-09-19 03:45:54 +08:00
|
|
|
brightness := uint8(
|
|
|
|
gobot.ToScale(gobot.FromScale(float64(data.(int)), 0, 4096), 0, 255),
|
|
|
|
)
|
|
|
|
fmt.Println("sensor", data)
|
|
|
|
fmt.Println("brightness", brightness)
|
|
|
|
led.Brightness(brightness)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("sensorBot",
|
|
|
|
[]gobot.Connection{e},
|
|
|
|
[]gobot.Device{sensor, led},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
master.Start()
|
2014-09-19 03:45:54 +08:00
|
|
|
}
|