77 #include <Adafruit_Sensor.h> 107 #define REG_WHO_AM_I (0x0F) 114 #define REG_CTRL_1 (0x20) 121 #define REG_CTRL_2 (0x21) 128 #define REG_CTRL_3 (0x22) 135 #define REG_CTRL_4 (0x23) 142 #define REG_CTRL_5 (0x24) 147 #define REG_OUT_X_L (0x28) 152 #define REG_OUT_X_H (0x29) 157 #define REG_OUT_Y_L (0x2a) 162 #define REG_OUT_Y_H (0x2b) 167 #define REG_OUT_Z_L (0x2c) 172 #define REG_OUT_Z_H (0x2d) 180 #define L3G4200D_CHIP_ID (0xd3) 213 #define CTRL1_RATE_100HZ_CUTOFF_12HZ5 (0b0000 << 4) 216 #define CTRL1_RATE_100HZ_CUTOFF_25HZ (0b0001 << 4) 219 #define CTRL1_RATE_200HZ_CUTOFF_12HZ5 (0b0100 << 4) 222 #define CTRL1_RATE_200HZ_CUTOFF_25HZ (0b0101 << 4) 225 #define CTRL1_RATE_200HZ_CUTOFF_50HZ (0b0110 << 4) 228 #define CTRL1_RATE_200HZ_CUTOFF_70HZ (0b0111 << 4) 231 #define CTRL1_RATE_400HZ_CUTOFF_20HZ (0b1000 << 4) 234 #define CTRL1_RATE_400HZ_CUTOFF_25HZ (0b1001 << 4) 237 #define CTRL1_RATE_400HZ_CUTOFF_50HZ (0b1010 << 4) 240 #define CTRL1_RATE_400HZ_CUTOFF_110HZ (0b1011 << 4) 243 #define CTRL1_RATE_800HZ_CUTOFF_30HZ (0b1100 << 4) 246 #define CTRL1_RATE_800HZ_CUTOFF_35HZ (0b1101 << 4) 249 #define CTRL1_RATE_800HZ_CUTOFF_50HZ (0b1110 << 4) 252 #define CTRL1_RATE_800HZ_CUTOFF_110HZ (0b1111 << 4) 275 #define CTRL1_POWER_DOWN (0b0000 << 0) 280 #define CTRL1_SLEEP (0b1000 << 0) 283 #define CTRL1_X_ONLY (0b1001 << 0) 286 #define CTRL1_Y_ONLY (0b1010 << 0) 289 #define CTRL1_Z_ONLY (0b1100 << 0) 292 #define CTRL1_XY (0b1011 << 0) 295 #define CTRL1_YZ (0b1110 << 0) 298 #define CTRL1_XZ (0b1101 << 0) 302 #define CTRL1_XYZ (0b1111 << 0) 338 #define CTRL2_HIGH_PASS_DIV_12 (0b0000 << 0) 342 #define CTRL2_HIGH_PASS_DIV_25 (0b0001 << 0) 346 #define CTRL2_HIGH_PASS_DIV_50 (0b0010 << 0) 350 #define CTRL2_HIGH_PASS_DIV_100 (0b0011 << 0) 354 #define CTRL2_HIGH_PASS_DIV_200 (0b0100 << 0) 358 #define CTRL2_HIGH_PASS_DIV_500 (0b0101 << 0) 362 #define CTRL2_HIGH_PASS_DIV_1000 (0b0110 << 0) 366 #define CTRL2_HIGH_PASS_DIV_2000 (0b0111 << 0) 370 #define CTRL2_HIGH_PASS_DIV_5000 (0b1000 << 0) 374 #define CTRL2_HIGH_PASS_DIV_10000 (0b1001 << 0) 392 #define CTRL3_DRIVE_HIGH_AND_LOW (0b0 << 4) 397 #define CTRL3_USE_PULL_UP_FOR_HIGH (0b1 << 4) 426 #define CTRL4_UPDATE_MSB_AND_LSB_TOGETHER (0b1 << 7) 431 #define CTRL4_LSB_AT_LOWER_ADDRESS (0b0 << 6) 436 #define CTRL4_MSB_AT_LOWER_ADDRESS (0b1 << 6) 456 #define CTRL4_FULL_SCALE_250DPS (0b00 << 4) 461 #define CTRL4_FULL_SCALE_500DPS (0b01 << 4) 466 #define CTRL4_FULL_SCALE_2000DPS (0b10 << 4) 484 #define CTRL5_NO_FILTERING ((0b00 << 0) | (0b0 << 4)) 487 #define CTRL5_HIGH_PASS_FILTERING ((0b01 << 0) | (0b0 << 4)) 490 #define CTRL5_LOW_PASS_FILTERING ((0b10 << 0) | (0b0 << 4)) 495 #define CTRL5_BAND_PASS_FILTERING ((0b10 << 0) | (0b1 << 4)) 508 typedef struct rawGyroSample {
595 bool begin(
int spiChipSelect,
597 SPIClass &spi = SPI, uint32_t spiFrequency = 5L * 1000L * 1000L);
606 void enableAutoRange(
bool enabled);
612 void enableDebugLogging(
bool enabled);
637 bool getEvent(sensors_event_t *event);
643 void getSensor(sensor_t *sensor);
654 float rangeInRadians();
664 uint8_t rawReadReg(uint8_t regAddress);
675 void rawWriteReg(uint8_t regAddress, uint8_t newValue);
681 bool _autoRangeEnabled;
683 SPISettings _spiSettings;
684 bool _debugLoggingEnabled;
697 rawGyroSample rawXYZ();
700 void beginTransaction();
703 void endTransaction();
707 uint8_t spiReadReg(uint8_t regAddress);
711 void spiWriteReg(uint8_t regAddress, uint8_t value);
714 float sampleToRad(int16_t fullScaleSample);
718 void debugLog(
const char str[]);
722 void debugLog(
int val);
726 void debugAppend(
const char str[]);
730 void debugAppend(
int val);
gyroRange_t
Optional sensititity settings. If not specified in L3G4200D_Unified::begin, defaults to GYRO_RANGE_4_...
Definition: L3G4200D_U.h:526
Definition: L3G4200D_U.h:531
Definition: L3G4200D_U.h:528
#define CTRL4_FULL_SCALE_500DPS
REG_CTRL_4 value for a gyroscope range of 500 deg/s. Corresponds to GYRO_RANGE_8_DOT_73_RAD_PER_SEC (...
Definition: L3G4200D_U.h:461
#define CTRL4_FULL_SCALE_250DPS
REG_CTRL_4 value for a gyroscope range of 250 deg/s. Corresponds to GYRO_RANGE_4_DOT_36_RAD_PER_SEC (...
Definition: L3G4200D_U.h:456
#define CTRL4_FULL_SCALE_2000DPS
REG_CTRL_4 value for a gyroscope range of 2000 deg/s. Corresponds to GYRO_RANGE_34_DOT_91_RAD_PER_SEC...
Definition: L3G4200D_U.h:466
Class for interfacing with an L3G4200D gyroscope, using the Adafruit Unified Sensor API...
Definition: L3G4200D_U.h:544
Definition: L3G4200D_U.h:534