1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/examples/edison_grove_temperature_sensor.go

34 lines
548 B
Go
Raw Normal View History

// +build example
//
// Do not build by default.
2015-07-09 11:50:39 -07:00
package main
import (
"fmt"
"time"
"gobot.io/x/gobot"
"gobot.io/x/gobot/drivers/aio"
"gobot.io/x/gobot/platforms/intel-iot/edison"
2015-07-09 11:50:39 -07:00
)
func main() {
board := edison.NewAdaptor()
sensor := aio.NewGroveTemperatureSensorDriver(board, "0")
2015-07-09 11:50:39 -07:00
work := func() {
gobot.Every(500*time.Millisecond, func() {
fmt.Println("current temp (c): ", sensor.Temperature())
})
}
robot := gobot.NewRobot("sensorBot",
[]gobot.Connection{board},
[]gobot.Device{sensor},
work,
)
robot.Start()
2015-07-09 11:50:39 -07:00
}