This is a library for the Arduino IDE that helps interface with ST's LSM6DS33 and LSM6DSO 3D accelerometer and gyro ICs on Pololu boards. It makes it simple to configure the LSM6 and read the raw accelerometer and gyro data from these boards:
- LSM6DSO 3D accelerometer and gyro carrier
- LSM6DS33 3D accelerometer and gyro carrier
- MinIMU-9 v6 (LSM6DSO and LIS3MDL carrier)
- AltIMU-10 v6 (LSM6DSO, LIS3MDL, and LPS22DF Carrier)
- MinIMU-9 v5 (LSM6DS33 and LIS3MDL carrier)
- AltIMU-9 v5 (LSM6DS33, LIS3MDL, and LPS25H carrier)
This library is designed to work with the Arduino IDE versions 1.6.x or later; we have not tested it with earlier versions. This library should support any Arduino-compatible board, including the Pololu A-Star 32U4 controllers.
An LSM6 carrier can be purchased from Pololu's website. Before continuing, careful reading of the product page as well as the chip datasheet and application note is recommended.
Make the following connections between the Arduino and the LSM6 board:
(including Arduino Uno, Leonardo, Mega; Pololu A-Star 32U4)
Arduino LSM6 board
------- ----------
5V - VIN
GND - GND
SDA - SDA
SCL - SCL
(including Arduino Due)
Arduino LSM6 board
------- ----------
3V3 - VIN
GND - GND
SDA - SDA
SCL - SCL
If you are using version 1.6.2 or later of the Arduino software (IDE), you can use the Library Manager to install this library:
- In the Arduino IDE, open the "Sketch" menu, select "Include Library", then "Manage Libraries...".
- Search for "LSM6".
- Click the LSM6 entry in the list.
- Click "Install".
If this does not work, you can manually install the library:
- Download the latest release archive from GitHub and decompress it.
- Rename the folder "lsm6-arduino-master" to "LSM6".
- Move the "LSM6" folder into the "libraries" directory inside your Arduino sketchbook directory. You can view your sketchbook location by opening the "File" menu and selecting "Preferences" in the Arduino IDE. If there is not already a "libraries" folder in that location, you should make the folder yourself.
- After installing the library, restart the Arduino IDE.
An example sketch is available that shows how to use the library. You can access it from the Arduino IDE by opening the "File" menu, selecting "Examples", and then selecting "LSM6". If you cannot find the example, the library was probably installed incorrectly and you should retry the installation instructions above.
-
vector<int16_t> a
The last values read from the accelerometer. -
vector<int16_t> g
The last values read from the gyro. -
uint8_t last_status
The status of the last I²C write transmission. See theWire.endTransmission()
documentation for return values. -
LSM6()
Constructor. -
void setBus(TwoWire * bus)
Configures this object to use the specified I²C bus.bus
should be a pointer to aTwoWire
object; the default bus isWire
, which is typically the first or only I²C bus on an Arduino. If your Arduino has more than one I²C bus and you have the VL53L0X connected to the second bus, which is typically calledWire1
, you can callsensor.setBus(&Wire1);
. -
TwoWire * getBus()
Returns a pointer to the I²C bus this object is using. -
bool init(deviceType device, sa0State sa0)
Initializes the library with the device being used (device_DS33
ordevice_auto
) and the state of the SA0 pin (sa0_low
,sa0_high
, orsa0_auto
), which determines the least significant bit of the I²C slave address. Constants for these arguments are defined in LSM6.h. Both of these arguments are optional; if they are not specified, the library will try to automatically detect the device address. A boolean is returned indicating whether the type of LSM6 device was successfully determined (if necessary). -
void getDeviceType()
Returns the device type specified to or detected byinit()
. -
void enableDefault()
Turns on the accelerometer and gyro and enables a consistent set of default settings.This function will reset the accelerometer to ±2 g full scale and the gyro to ±245 dps. See the comments in LSM6.cpp for a full explanation of the settings.
-
void writeReg(uint8_t reg, uint8_t value)
Writes a sensor register with the given value.Register address constants are defined by the regAddr enumeration type in LSM6.h.
Example use:imu.writeReg(LSM6::CTRL1_XL, 0x80);
-
uint8_t readReg(uint8_t reg)
Reads a sensor register and returns the value read. -
void readAcc()
Takes a reading from the accelerometer and stores the values in the vectora
. Conversion of the readings to units of g depends on the accelerometer's selected gain (full scale setting). -
void readGyro()
Takes a reading from the gyro and stores the values in the vectorg
. Conversion of the readings to units of dps (degrees per second) depends on the gyro's selected gain (full scale setting). -
void read()
Takes a reading from both the accelerometer and gyro and stores the values in the vectorsa
andg
.
- 2.0.1 (2022-10-14): Renamed PIN_CTRL to DSO_PIN_CTRL to work around a naming conflict with the ESP32. The original name can still be used on other platforms.
- 2.0.0 (2022-09-02): Added support for LSM6DSO and support for alternative I²C buses. Removed timeout functionality that did not work as intended.
- 1.0.0 (2016-01-19): Original release.