1#ifndef ICM20948SENSOR_H
2#define ICM20948SENSOR_H
4#include <Adafruit_ICM20948.h>
5#include <Adafruit_ICM20X.h>
6#include <Adafruit_Sensor.h>
19 Adafruit_ICM20948
icm;
Central location for pinout and config defines.
int attempt_number
Definition Device.h:19
Implementation of the Sensor class for the Adafruit ICM20948 (9-axis IMU)
Definition ICM20948Sensor.h:17
Adafruit_Sensor * icm_temp
Definition ICM20948Sensor.h:20
Adafruit_Sensor * icm_gyro
Definition ICM20948Sensor.h:20
void readDataPacket(uint8_t *&packet) override
Append the ICM sensor data to the packet buffer as raw bytes. The data appended is: accel....
Definition ICM20948Sensor.cpp:76
Adafruit_ICM20948 icm
Definition ICM20948Sensor.h:19
Adafruit_Sensor * icm_accel
Definition ICM20948Sensor.h:20
ICM20948Sensor()
Construct a new ICM20948Sensor object with default minimum_period of 0.
Definition ICM20948Sensor.cpp:7
Adafruit_Sensor * icm_mag
Definition ICM20948Sensor.h:20
bool verify() override
Verifies that the ICM is connected and working.
Definition ICM20948Sensor.cpp:27
String decodeToCSV(uint8_t *&packet) override
Decodes the ICM sensor data from the packet buffer into a CSV string. Reads the data in the same orde...
Definition ICM20948Sensor.cpp:121
String readData() override
Retrieves data from ICM 9-axis IMU.
Definition ICM20948Sensor.cpp:50
Parent class for sensor objects.
Definition Sensor.h:13
unsigned long minimum_period
Definition Sensor.h:15