39 lines
693 B
Go
39 lines
693 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
|
"github.com/hybridgroup/gobot"
|
||
|
"github.com/hybridgroup/gobot/platforms/i2c"
|
||
|
"github.com/hybridgroup/gobot/platforms/intel-iot/edison"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
gbot := gobot.NewGobot()
|
||
|
|
||
|
board := edison.NewEdisonAdaptor("edison")
|
||
|
accel := i2c.NewGroveAccelerometerDriver(board, "accel")
|
||
|
|
||
|
work := func() {
|
||
|
gobot.Every(500*time.Millisecond, func() {
|
||
|
if x, y, z, err := accel.XYZ(); err == nil {
|
||
|
fmt.Println(x, y, z)
|
||
|
fmt.Println(accel.Acceleration(x, y, z))
|
||
|
} else {
|
||
|
fmt.Println(err)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
robot := gobot.NewRobot("accelBot",
|
||
|
[]gobot.Connection{board},
|
||
|
[]gobot.Device{accel},
|
||
|
work,
|
||
|
)
|
||
|
|
||
|
gbot.AddRobot(robot)
|
||
|
|
||
|
gbot.Start()
|
||
|
}
|