ASCEND Flight Software
Loading...
Searching...
No Matches
INA260Sensor.h
Go to the documentation of this file.
1#ifndef INA260SENSOR_H
2#define INA260SENSOR_H
3
4#include <Arduino.h>
5#include <string.h>
6
7#include "Adafruit_INA260.h"
8#include "Sensor.h"
9
26class INA260Sensor : public Sensor {
27 private:
28 Adafruit_INA260 ina260;
29
30 public:
32 INA260Sensor(unsigned long minimum_period);
33 void readDataPacket(uint8_t*& packet) override;
34 String decodeToCSV(uint8_t*& packet) override;
35
36 bool verify() override;
37 String readData() override;
38};
39
40#endif
int attempt_number
Definition Device.h:19
A class to interface with the Adafruit INA260 sensor for current, voltage, and power measurements.
Definition INA260Sensor.h:26
INA260Sensor()
Default constructor for the INA260Sensor class.
Definition INA260Sensor.cpp:9
String readData() override
Reads data from the INA260 sensor and returns it in CSV format.
Definition INA260Sensor.cpp:48
bool verify() override
Verifies the connection to the INA260 sensor.
Definition INA260Sensor.cpp:34
Adafruit_INA260 ina260
Definition INA260Sensor.h:28
String decodeToCSV(uint8_t *&packet) override
Decodes sensor data from the packet into a CSV string.
Definition INA260Sensor.cpp:84
void readDataPacket(uint8_t *&packet) override
Reads sensor data and appends to packet byte array, data includes current(mA), voltage(mV),...
Definition INA260Sensor.cpp:63
Parent class for sensor objects.
Definition Sensor.h:13
unsigned long minimum_period
Definition Sensor.h:15