36 lines
724 B
Go
36 lines
724 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
|
||
|
"github.com/hybridgroup/gobot"
|
||
|
"github.com/hybridgroup/gobot/platforms/firmata"
|
||
|
"github.com/hybridgroup/gobot/platforms/i2c"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
gbot := gobot.NewGobot()
|
||
|
|
||
|
firmataAdaptor := firmata.NewFirmataAdaptor("firmata", "/dev/ttyACM0")
|
||
|
mpu6050 := i2c.NewMPU6050Driver(firmataAdaptor, "mpu6050")
|
||
|
|
||
|
work := func() {
|
||
|
gobot.Every(100*time.Millisecond, func() {
|
||
|
fmt.Println("Accelerometer", mpu6050.Accelerometer)
|
||
|
fmt.Println("Gyroscope", mpu6050.Gyroscope)
|
||
|
fmt.Println("Temperature", mpu6050.Temperature)
|
||
|
})
|
||
|
}
|
||
|
|
||
|
robot := gobot.NewRobot("mpu6050Bot",
|
||
|
[]gobot.Connection{firmataAdaptor},
|
||
|
[]gobot.Device{mpu6050},
|
||
|
work,
|
||
|
)
|
||
|
|
||
|
gbot.AddRobot(robot)
|
||
|
|
||
|
gbot.Start()
|
||
|
}
|