ASCEND Flight Software
|
A class to interface with the Adafruit INA260 sensor for current, voltage, and power measurements. More...
#include <INA260Sensor.h>
Public Member Functions | |
INA260Sensor () | |
Default constructor for the INA260Sensor class. | |
INA260Sensor (unsigned long minimum_period) | |
Parameterized constructor for the INA260Sensor class. | |
void | readDataPacket (uint8_t *&packet) override |
Reads sensor data and appends to packet byte array, data includes current(mA), voltage(mV), and power (mW). | |
String | decodeToCSV (uint8_t *&packet) override |
Decodes sensor data from the packet into a CSV string. | |
bool | verify () override |
Verifies the connection to the INA260 sensor. | |
String | readData () override |
Reads data from the INA260 sensor and returns it in CSV format. | |
![]() | |
Sensor (String sensor_name, String csv_header, unsigned long minimum_period) | |
Sensor (String sensor_name, String csv_header) | |
Sensor (String sensor_name, String csv_header, int fields) | |
Construct a new Sensor object with default minimum_period of 0 (depreciated) | |
Sensor (String sensor_name, String csv_header, int fields, unsigned long minimum_period) | |
Construct a new Sensor object (Depreciated) | |
unsigned long | getPeriod () const |
Get the minimum minimum_period between sensor reads in ms. | |
void | setPeriod (int minimum_period) |
Set the minimum minimum_period between sensor reads in ms. | |
unsigned long | getLastExecution () const |
Get the system time of the last execution in ms. | |
void | setLastExecution (int last_execution) |
Set the system time of the last execution in ms. | |
const String & | getSensorCSVHeader () const |
Get the csv header string associated with this sensor. | |
void | getDataPacket (uint32_t &sensor_id, uint8_t *&packet) |
Append the data from a sensor to the packet if the minium period is satisfied. | |
String | readEmpty () const |
Returns CSV line in the same format as readData() but with "-" instead of data. | |
String | getDataCSV () |
Uses readData and readEmpty to get the data-filled or empty-celled CSV line for the sensor. | |
![]() | |
Device (String device_name) | |
Default constructor, sets a max_attempt of 1 (device recovery won't be attempted) | |
Device (String device_name, int max_attempts, int wait_factor) | |
const String & | getDeviceName () |
bool | getVerified () |
Get if the Device is Verified. | |
void | recoveryConfig (int max_attempts, int wait_factor) |
Set recovery config (used keep default constructor) | |
void | setWaitFactor (int wait_factor) |
Set wait_factor. | |
void | setMaxAttempts (int max_attempts) |
Set max_attempts. | |
bool | attemptConnection () |
If the sensor is verified, return true, if not and it has been long enough since the last attempt (decided by wait_factor and attempt_number), attempt to reverify (reinitialize) it. | |
Private Attributes | |
Adafruit_INA260 | ina260 |
Additional Inherited Members | |
![]() | |
int | num_fields |
![]() | |
bool | verified |
String | device_name |
A class to interface with the Adafruit INA260 sensor for current, voltage, and power measurements.
The INA260Sensor class is responsible for interacting with the Adafruit INA260 sensor to gather electrical data, including current (in mA), voltage (in mV), and power (in mW). This class inherits from the Sensor base class and overrides the verify()
and readData()
methods to provide specific functionality for the INA260 sensor.
Key functionalities:
INA260Sensor::INA260Sensor | ( | ) |
Default constructor for the INA260Sensor class.
Initializes the sensor object with a default minimum period of 0 milliseconds by calling the parameterized constructor with 0.
Parameterized constructor for the INA260Sensor class.
Initializes the sensor object with a specified minimum period and sets up the sensor name, CSV header, and number of data fields (3: current, voltage, and power).
minimum_period | The minimum time period between sensor readings, in milliseconds. |
|
overridevirtual |
Decodes sensor data from the packet into a CSV string.
Data includes current(mA), voltage(mV), and power (mW).
packet | Pointer to packet byte array that will be decoded. |
Reimplemented from Sensor.
|
overridevirtual |
Reads data from the INA260 sensor and returns it in CSV format.
This function reads the current (in mA), bus voltage (in mV), and power (in mW) values from the INA260 sensor and formats them into a CSV string.
Implements Sensor.
|
overridevirtual |
Reads sensor data and appends to packet byte array, data includes current(mA), voltage(mV), and power (mW).
packet | Pointer to the packet byte array. |
Reimplemented from Sensor.
|
overridevirtual |
Verifies the connection to the INA260 sensor.
This function initializes the INA260 sensor object and checks whether the sensor is successfully detected on the I2C bus.
Implements Sensor.
|
private |