#ifndef BATTERY_UTILS_H_ #define BATTERY_UTILS_H_ #include namespace BATTERY_Utils { void adcCalibration(); void adcCalibrationCheck(); void setup(); float checkInternalVoltage(); float checkExternalVoltage(); void startupBatteryHealth(); String generateEncodedTelemetryBytes(float value, bool firstBytes, byte voltageType); String generateEncodedTelemetry(); } #endif