1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-24 13:48:49 +08:00
hybridgroup.gobot/examples/chip_mpu6050.go
Thomas Kohler 865e724af0
Build(v2): revert move to v2 subfolder (#932)
* revert move to v2 subfolder
* fix CI and adjust CHANGELOG
2023-05-29 19:23:28 +02:00

40 lines
662 B
Go

//go:build example
// +build example
//
// Do not build by default.
package main
import (
"fmt"
"time"
"gobot.io/x/gobot/v2"
"gobot.io/x/gobot/v2/drivers/i2c"
"gobot.io/x/gobot/v2/platforms/chip"
)
func main() {
board := chip.NewAdaptor()
mpu6050 := i2c.NewMPU6050Driver(board)
work := func() {
gobot.Every(100*time.Millisecond, func() {
mpu6050.GetData()
fmt.Println("Accelerometer", mpu6050.Accelerometer)
fmt.Println("Gyroscope", mpu6050.Gyroscope)
fmt.Println("Temperature", mpu6050.Temperature)
})
}
robot := gobot.NewRobot("mpu6050Bot",
[]gobot.Connection{board},
[]gobot.Device{mpu6050},
work,
)
robot.Start()
}