Changed the time for calibaration charge from 7 days to 14.

This commit is contained in:
atef 2024-01-10 16:29:30 +01:00
parent 3cf82b3153
commit da5e8ea2d7
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ public partial class Battery48TlRecord
// When The battery is full charged (reached EOC) the Time Since TOC is set to 0 // When The battery is full charged (reached EOC) the Time Since TOC is set to 0
public TimeSpan TimeSinceTOC => TimeSpan.FromMinutes(_TimeSinceToc); public TimeSpan TimeSinceTOC => TimeSpan.FromMinutes(_TimeSinceToc);
public Boolean CalibrationChargeRequested => TimeSinceTOC > TimeSpan.FromDays(7); public Boolean CalibrationChargeRequested => TimeSinceTOC > TimeSpan.FromDays(14);
public readonly struct Leds_ public readonly struct Leds_
{ {