PCB 1.4 no INA169, how will PCB 1.4 handle 4A charging

markor

Member
Sorry if these all have been documented somewhere, but also wondering about how will the PCB 1.4 handle 4A charging? The INA169 had a bridge I could solder on and it was able to handle up to 5A charging. Batteries have max 4A charging allowed so I have been using a 4A charger on my mowers. Will 4A charging be a problem now??
 
Hello @markor,
at the PCB1.4 the INA is integrated on the board:
6FE22FD4-7D9E-4F35-A85B-86A133B249BA.jpeg
For a charging current up to 5A you have to close the red marked bridge (JP16) by soldering and you have to replace the T3A at EF1 against a T5A or T6.3A fuse.
If you use the Sunray Software, you have to change the following settings in the config.h:
C++:
// ----- battery charging current measurement (INA169) --------------
// the Marotronics charger outputs max 1.5A
// ( https://www.marotronics.de/Ladegeraete-fuer-den-Ardumower-Akkus-24V-mit-Status-LED-auch-fuer-Li-Ion-Akkus )
// so we are using the INA169 in non-bridged mode (max. 2.5A)
// ( https://www.marotronics.de/INA169-Analog-DC-Current-Sensor-Breakout-60V-25A-5A-Marotronics )

//#define CURRENT_FACTOR 0.5     // PCB1.3 (non-bridged INA169, max. 2.5A)
//#define CURRENT_FACTOR 1.0   // PCB1.3 (bridged INA169, max. 5A)
//#define CURRENT_FACTOR 1.98   // PCB1.4 (non-bridged INA169, max. 2.5A)
#define CURRENT_FACTOR 2.941  // PCB1.4 (bridged INA169, max. 5A)

The translated document for the PCB1.4 you can find here:
ardumower-mainboard-v1-4_r7-assembly-instruction-v1-0-pdf

regards,
Sven
 
Zuletzt bearbeitet:
@sven Thank you so much! Should've taken my time to go it trough all. Really appreciated!

Edit: I'm blind. It's all there that I need. ;)
 
Zuletzt bearbeitet:
Oben