Hey folks,
Has anyone any experience with the TP4056 charging unit.
MY query is in relation the control resistor, i want to record the data on the arduino to see the current and plot the charge curve over time.
is it possible to solder onto the controllable resistor to monitor the voltage? or does it have a record feature via the USB?
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
int Cell_Voltage_Sense = analogRead(A2);
float Cell_current = analogRead(A0);
float voltage = Cell_Voltage_Sense * (4.91 / 1023.0);
Serial.print(voltage);
Serial.print(",");
Serial.print(Cell_current);
Serial.println();
delay(4000);
}
so i set it up in the configuration, i had an ACS712 20A lying around.
but this is what i get for my readings for the current.