mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
a9b36f8bd4
mpu9150: add mpu9150 driver
100 lines
4.1 KiB
Go
100 lines
4.1 KiB
Go
// Package mpu9150 provides a driver for the MPU9150 accelerometer and gyroscope
|
||
// made by InvenSense.
|
||
//
|
||
// Datasheets:
|
||
// https://invensense.tdk.com/wp-content/uploads/2015/02/MPU-9150-Datasheet.pdf
|
||
// https://inertialelements.com/documents/resources_page/MPU9150-register-manual.pdf
|
||
|
||
package mpu9150
|
||
|
||
import (
|
||
"tinygo.org/x/drivers"
|
||
"tinygo.org/x/drivers/internal/legacy"
|
||
)
|
||
|
||
// Device wraps an I2C connection to a MPU9150 device.
|
||
type Device struct {
|
||
bus drivers.I2C
|
||
Address uint16
|
||
}
|
||
|
||
// New creates a new MPU9150 connection. The I2C bus must already be
|
||
// configured.
|
||
//
|
||
// This function only creates the Device object, it does not touch the device.
|
||
func New(bus drivers.I2C) Device {
|
||
return Device{bus, Address}
|
||
}
|
||
|
||
// Connected returns whether a MPU9150 has been found.
|
||
// It does a "who am I" request and checks the response.
|
||
func (d Device) Connected() bool {
|
||
data := []byte{0}
|
||
legacy.ReadRegister(d.bus, uint8(d.Address), WHO_AM_I, data)
|
||
return data[0] == 0x68 // 4.32 Register 117 – Who Am I (MPU-9150 Register Map and Descriptions)
|
||
}
|
||
|
||
// Configure sets up the device for communication.
|
||
func (d Device) Configure() error {
|
||
return d.SetClockSource(CLOCK_INTERNAL)
|
||
}
|
||
|
||
// ReadAcceleration reads the current acceleration from the device and returns
|
||
// it in µg (micro-gravity). When one of the axes is pointing straight to Earth
|
||
// and the sensor is not moving the returned value will be around 1000000 or
|
||
// -1000000.
|
||
func (d Device) ReadAcceleration(accel_axis byte) (x int32, y int32, z int32) {
|
||
data := make([]byte, 6)
|
||
legacy.ReadRegister(d.bus, uint8(d.Address), accel_axis, data)
|
||
// Now do two things:
|
||
// 1. merge the two values to a 16-bit number (and cast to a 32-bit integer)
|
||
// 2. scale the value to bring it in the -1000000..1000000 range.
|
||
// This is done with a trick. What we do here is essentially multiply by
|
||
// 1000000 and divide by 16384 to get the original scale, but to avoid
|
||
// overflow we do it at 1/64 of the value:
|
||
// 1000000 / 64 = 15625
|
||
// 16384 / 64 = 256
|
||
x = int32(int16((uint16(data[0])<<8)|uint16(data[1]))) * 15625 / 256
|
||
y = int32(int16((uint16(data[2])<<8)|uint16(data[3]))) * 15625 / 256
|
||
z = int32(int16((uint16(data[4])<<8)|uint16(data[5]))) * 15625 / 256
|
||
return
|
||
}
|
||
|
||
// ReadRotation reads the current rotation from the device and returns it in
|
||
// µ°/s (micro-degrees/sec). This means that if you were to do a complete
|
||
// rotation along one axis and while doing so integrate all values over time,
|
||
// you would get a value close to 360000000.
|
||
func (d Device) ReadRotation(gyro_axis byte) (x int32, y int32, z int32) {
|
||
data := make([]byte, 6)
|
||
legacy.ReadRegister(d.bus, uint8(d.Address), gyro_axis, data)
|
||
// First the value is converted from a pair of bytes to a signed 16-bit
|
||
// value and then to a signed 32-bit value to avoid integer overflow.
|
||
// Then the value is scaled to µ°/s (micro-degrees per second).
|
||
// This is done in the following steps:
|
||
// 1. Multiply by 250 * 1000_000
|
||
// 2. Divide by 32768
|
||
// The following calculation (x * 15625 / 2048 * 1000) is essentially the
|
||
// same but avoids overflow. First both operations are divided by 16 leading
|
||
// to multiply by 15625000 and divide by 2048, and then part of the multiply
|
||
// is done after the divide instead of before.
|
||
x = int32(int16((uint16(data[0])<<8)|uint16(data[1]))) * 15625 / 2048 * 1000
|
||
y = int32(int16((uint16(data[2])<<8)|uint16(data[3]))) * 15625 / 2048 * 1000
|
||
z = int32(int16((uint16(data[4])<<8)|uint16(data[5]))) * 15625 / 2048 * 1000
|
||
return
|
||
}
|
||
|
||
// SetClockSource allows the user to configure the clock source.
|
||
func (d Device) SetClockSource(source uint8) error {
|
||
return legacy.WriteRegister(d.bus, uint8(d.Address), PWR_MGMT_1, []uint8{source})
|
||
}
|
||
|
||
// SetFullScaleGyroRange allows the user to configure the scale range for the gyroscope.
|
||
func (d Device) SetFullScaleGyroRange(rng uint8) error {
|
||
return legacy.WriteRegister(d.bus, uint8(d.Address), GYRO_CONFIG, []uint8{rng})
|
||
}
|
||
|
||
// SetFullScaleAccelRange allows the user to configure the scale range for the accelerometer.
|
||
func (d Device) SetFullScaleAccelRange(rng uint8) error {
|
||
return legacy.WriteRegister(d.bus, uint8(d.Address), ACCEL_CONFIG, []uint8{rng})
|
||
}
|