2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2015-07-10 02:50:39 +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/platforms/intel-iot/edison"
|
2015-07-10 02:50:39 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
board := edison.NewAdaptor()
|
2016-12-20 20:25:22 +08:00
|
|
|
sensor := aio.NewGrovePiezoVibrationSensorDriver(board, "0")
|
2015-07-10 02:50:39 +08:00
|
|
|
|
|
|
|
work := func() {
|
2016-12-20 20:25:22 +08:00
|
|
|
sensor.On(aio.Vibration, func(data interface{}) {
|
2015-07-10 02:50:39 +08:00
|
|
|
fmt.Println("got one!")
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
robot := gobot.NewRobot("bot",
|
|
|
|
[]gobot.Connection{board},
|
|
|
|
[]gobot.Device{sensor},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
robot.Start()
|
2015-07-10 02:50:39 +08:00
|
|
|
}
|