L3G4200D Arduino Unified Sensor Library
L3G4200D_U.h
Go to the documentation of this file.
1 
67 #ifndef L3G4200D_U_H
68 #define L3G4200D_U_H
69 
70 #if ARDUINO >= 100
71 #include "Arduino.h"
72 #include "Print.h"
73 #else
74 #include "WProgram.h"
75 #endif
76 
77 #include <Adafruit_Sensor.h>
78 #include <SPI.h>
79 
107 #define REG_WHO_AM_I (0x0F)
108 
114 #define REG_CTRL_1 (0x20)
115 
121 #define REG_CTRL_2 (0x21)
122 
128 #define REG_CTRL_3 (0x22)
129 
135 #define REG_CTRL_4 (0x23)
136 
142 #define REG_CTRL_5 (0x24)
143 
147 #define REG_OUT_X_L (0x28)
148 
152 #define REG_OUT_X_H (0x29)
153 
157 #define REG_OUT_Y_L (0x2a)
158 
162 #define REG_OUT_Y_H (0x2b)
163 
167 #define REG_OUT_Z_L (0x2c)
168 
172 #define REG_OUT_Z_H (0x2d)
173 
180 #define L3G4200D_CHIP_ID (0xd3)
181 
209 // Bits 7:6 set the output data rate, and bits 5:4 set the "low-pass" filtering
210 // bandwidth.
211 
213 #define CTRL1_RATE_100HZ_CUTOFF_12HZ5 (0b0000 << 4)
214 
216 #define CTRL1_RATE_100HZ_CUTOFF_25HZ (0b0001 << 4)
217 
219 #define CTRL1_RATE_200HZ_CUTOFF_12HZ5 (0b0100 << 4)
220 
222 #define CTRL1_RATE_200HZ_CUTOFF_25HZ (0b0101 << 4)
223 
225 #define CTRL1_RATE_200HZ_CUTOFF_50HZ (0b0110 << 4)
226 
228 #define CTRL1_RATE_200HZ_CUTOFF_70HZ (0b0111 << 4)
229 
231 #define CTRL1_RATE_400HZ_CUTOFF_20HZ (0b1000 << 4)
232 
234 #define CTRL1_RATE_400HZ_CUTOFF_25HZ (0b1001 << 4)
235 
237 #define CTRL1_RATE_400HZ_CUTOFF_50HZ (0b1010 << 4)
238 
240 #define CTRL1_RATE_400HZ_CUTOFF_110HZ (0b1011 << 4)
241 
243 #define CTRL1_RATE_800HZ_CUTOFF_30HZ (0b1100 << 4)
244 
246 #define CTRL1_RATE_800HZ_CUTOFF_35HZ (0b1101 << 4)
247 
249 #define CTRL1_RATE_800HZ_CUTOFF_50HZ (0b1110 << 4)
250 
252 #define CTRL1_RATE_800HZ_CUTOFF_110HZ (0b1111 << 4)
253  // End member group rate_filtering.
255 
269 // Bit 3 sets the power mode for the chip as a whole.
270 // Bit 2 enables or disables the Z-axis.
271 // Bit 1 enables or disables the Y-axis.
272 // Bit 0 enables or disables the X-axis.
273 
275 #define CTRL1_POWER_DOWN (0b0000 << 0)
276 
280 #define CTRL1_SLEEP (0b1000 << 0)
281 
283 #define CTRL1_X_ONLY (0b1001 << 0)
284 
286 #define CTRL1_Y_ONLY (0b1010 << 0)
287 
289 #define CTRL1_Z_ONLY (0b1100 << 0)
290 
292 #define CTRL1_XY (0b1011 << 0)
293 
295 #define CTRL1_YZ (0b1110 << 0)
296 
298 #define CTRL1_XZ (0b1101 << 0)
299 
302 #define CTRL1_XYZ (0b1111 << 0)
303  // End member group power_axes. // End group CTRL1.
306 
338 #define CTRL2_HIGH_PASS_DIV_12 (0b0000 << 0)
339 
342 #define CTRL2_HIGH_PASS_DIV_25 (0b0001 << 0)
343 
346 #define CTRL2_HIGH_PASS_DIV_50 (0b0010 << 0)
347 
350 #define CTRL2_HIGH_PASS_DIV_100 (0b0011 << 0)
351 
354 #define CTRL2_HIGH_PASS_DIV_200 (0b0100 << 0)
355 
358 #define CTRL2_HIGH_PASS_DIV_500 (0b0101 << 0)
359 
362 #define CTRL2_HIGH_PASS_DIV_1000 (0b0110 << 0)
363 
366 #define CTRL2_HIGH_PASS_DIV_2000 (0b0111 << 0)
367 
370 #define CTRL2_HIGH_PASS_DIV_5000 (0b1000 << 0)
371 
374 #define CTRL2_HIGH_PASS_DIV_10000 (0b1001 << 0)
375  // End member group high_pass_divisor // End group CTRL2
378 
392 #define CTRL3_DRIVE_HIGH_AND_LOW (0b0 << 4)
393 
397 #define CTRL3_USE_PULL_UP_FOR_HIGH (0b1 << 4)
398  // End group CTRL3.
400 
426 #define CTRL4_UPDATE_MSB_AND_LSB_TOGETHER (0b1 << 7)
427 
431 #define CTRL4_LSB_AT_LOWER_ADDRESS (0b0 << 6)
432 
436 #define CTRL4_MSB_AT_LOWER_ADDRESS (0b1 << 6)
437  // End member group out_reg_config.
439 
456 #define CTRL4_FULL_SCALE_250DPS (0b00 << 4)
457 
461 #define CTRL4_FULL_SCALE_500DPS (0b01 << 4)
462 
466 #define CTRL4_FULL_SCALE_2000DPS (0b10 << 4)
467  // End member group gyro_range.
469  // End group CTRL4.
471 
484 #define CTRL5_NO_FILTERING ((0b00 << 0) | (0b0 << 4))
485 
487 #define CTRL5_HIGH_PASS_FILTERING ((0b01 << 0) | (0b0 << 4))
488 
490 #define CTRL5_LOW_PASS_FILTERING ((0b10 << 0) | (0b0 << 4))
491 
495 #define CTRL5_BAND_PASS_FILTERING ((0b10 << 0) | (0b1 << 4))
496 
497 // End group CTRL5.
502 // End group registers.
508 typedef struct rawGyroSample {
509  int16_t x;
510  int16_t y;
511  int16_t z;
512 } gyroSample_t;
513 
526 typedef enum {
529 
532 
535 } gyroRange_t;
536 
544 class L3G4200D_Unified : public Adafruit_Sensor {
545 
546 public:
554  L3G4200D_Unified(int32_t sensorId);
555 
556  // Default to the global default SPI connector, which is often brought out
557  // and labeled as labeled SPI connectors on Arduino boards.
595  bool begin(int spiChipSelect,
597  SPIClass &spi = SPI, uint32_t spiFrequency = 5L * 1000L * 1000L);
598 
606  void enableAutoRange(bool enabled);
607 
612  void enableDebugLogging(bool enabled);
613 
637  bool getEvent(sensors_event_t *event);
638 
643  void getSensor(sensor_t *sensor);
644 
649  void setRange(gyroRange_t range);
650 
654  float rangeInRadians();
655 
664  uint8_t rawReadReg(uint8_t regAddress);
665 
675  void rawWriteReg(uint8_t regAddress, uint8_t newValue);
676 
677 private:
678  SPIClass *_spi;
679  int _spiCS;
680  int32_t _sensorId;
681  bool _autoRangeEnabled;
682  gyroRange_t _range;
683  SPISettings _spiSettings;
684  bool _debugLoggingEnabled;
685 
687  int16_t rawX();
688 
690  int16_t rawY();
691 
693  int16_t rawZ();
694 
697  rawGyroSample rawXYZ();
698 
700  void beginTransaction();
701 
703  void endTransaction();
704 
707  uint8_t spiReadReg(uint8_t regAddress);
708 
711  void spiWriteReg(uint8_t regAddress, uint8_t value);
712 
714  float sampleToRad(int16_t fullScaleSample);
715 
718  void debugLog(const char str[]);
719 
722  void debugLog(int val);
723 
726  void debugAppend(const char str[]);
727 
730  void debugAppend(int val);
731 };
732  // End group sensor.
734 
735 #endif
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