1
0
mirror of https://github.com/sjlongland/cluster-powerctl.git synced 2025-09-14 04:23:15 +10:00

setpoints.h: Fine tune setpoints.

- Drop the minimum voltage down a touch so we're not flapping the mains
  charger in unnecessarily.

- Halve the boost time so that the sun has a better chance of keeping
  the battery up.
This commit is contained in:
Stuart Longland 2018-09-22 12:30:53 +10:00
parent 7e9520db3a
commit d33c69e80d
Signed by: stuartl
GPG Key ID: 6AA32EFB18079BAA

View File

@ -62,7 +62,7 @@
* Low battery voltage. If the voltage dips to or below this level, we * Low battery voltage. If the voltage dips to or below this level, we
* should turn the charger on. * should turn the charger on.
*/ */
#define V_L_MV (12800) #define V_L_MV (12600)
/*! /*!
* Solar minimum voltage. If the solar is below this threshold, we * Solar minimum voltage. If the solar is below this threshold, we
@ -75,6 +75,6 @@
/*! /*!
* How long do we remain on the mains charger after reaching V_H_MV? * How long do we remain on the mains charger after reaching V_H_MV?
*/ */
#define T_FLOAT_S (3600) #define T_FLOAT_S (1800)
#endif #endif