mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-02 22:17:12 +08:00
35 lines
695 B
Go
35 lines
695 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/drivers/gpio"
|
|
"github.com/hybridgroup/gobot/platforms/intel-iot/edison"
|
|
)
|
|
|
|
func main() {
|
|
e := edison.NewAdaptor()
|
|
sensor := gpio.NewAnalogSensorDriver(e, "0")
|
|
led := gpio.NewLedDriver(e, "3")
|
|
|
|
work := func() {
|
|
sensor.On(gpio.Data, func(data interface{}) {
|
|
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,
|
|
)
|
|
|
|
master.Start()
|
|
}
|