Arduino_LSM6DS3
Arduino_LSM6DS3 copied to clipboard
LSM6DS3 Library for Arduino
I would like to propose a version 1.1.0 update to the library that adds support for the LSM6DS3's integrated temperature sensor with three new functions: - `readTemp` outputs the temperature...
I'm afraid that these lines in LSM6DS3.cpp are not correct: `93 // Set the ODR config register to ODR/4` `94 writeRegister(LSM6DS3_CTRL8_XL, 0x09);` Actually, ODRs are set in CTRL1_XL and CTRL2_G....
I noticed, when trying out this library for a ESP32 and I2C project, this library does not compile due to the following errors: ``` libraries\Arduino_LSM6DS3\src\LSM6DS3.cpp: In member function 'void LSM6DS3Class::end()':`...
This example provides good quality pitch, roll, drift from raw gyro/accel data - gyro calibration to remove gyro drift - trigonometry calculations to convert accel m/s/s to angles - and...
fix #3
added AccelerometerTap code.
I got a little carried away while I was working on this: ### FIFO Support (Issue #5): Added methods to allow enable, disable, and reset of FIFO control registers. Allows...
I have this sensor and i tried other library examples. It's working but when i work with this library's examples, it doesnt work. İam using i2c protocol and i can...
I need to extend this library to log data to the FIFO queue. I also want to turn on/off the both the accelerometer and gyro. A bunch of things really,...
Use of built-in buffer for LSM6DS3 library for nano 33 IoT.
LSM6DS3.cpp sets 0x09 to LSM6DS3_CTRL8_XL register while the LSM6DS3 datasheet says the bit3 shoud be zero for the correct operation. I suppose the value should be 0x05.