+
#include <LightChrono.h>
#include <Chrono.h>
float mwatthours;
if (timer.hasPassed(1000)) {
+ unsigned long passed = timer.elapsed();
timer.restart();
+ battery_voltage = readVoltage(A0);
+
if (battery_voltage < 0.8) {
delay(200);
} else {
- unsigned long passed = timer.elapsed();
-
shunt_voltage = readVoltage(A1);
shunt_current = shunt_voltage/APPARENT_SHUNT_RESISTANCE;
- battery_voltage = readVoltage(A0);
amps_in_period = shunt_current * passed/1000;
watts_in_period = amps_in_period * battery_voltage;