ASCEND Flight Software
Loading...
Searching...
No Matches
ICM20948Sensor.h
Go to the documentation of this file.
1#ifndef ICM20948SENSOR_H
2#define ICM20948SENSOR_H
3
4#include <Adafruit_ICM20948.h>
5#include <Adafruit_ICM20X.h>
6#include <Adafruit_Sensor.h>
7#include <string.h>
8
9#include "PayloadConfig.h"
10#include "Sensor.h"
11
17class ICM20948Sensor : public Sensor {
18 private:
19 Adafruit_ICM20948 icm;
21
22 public:
24 ICM20948Sensor(unsigned long minimum_period);
25 bool verify() override;
26 String readData() override;
27 void readDataPacket(uint8_t*& packet) override;
28 String decodeToCSV(uint8_t*& packet) override;
29};
30
31#endif
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