Compare commits

..

No commits in common. "09c45eced60c373a19c678fc18a42601084736d5" and "18f30b9abb6a46e6e230fc9740366ebb9e8762fb" have entirely different histories.

2 changed files with 7 additions and 4 deletions

View File

@ -20,6 +20,8 @@ public partial class Battery250UpRecord
public Boolean Eoc => ParseEocReached();//Leds is { Green: On, Amber: Off, Blue : Off }; // ParseEocReached(); //
public UInt16 IoStates => _IoStates;
public String BatteryState => ParseBatteryState();
public String SerialNumber => $"{_SerialNum1:X4}{_SerialNum2:X4}{_SerialNum3:X4}{_SerialNum4:X4}".TrimEnd('0');

View File

@ -21,6 +21,7 @@ public partial class Battery48TlRecord
public Boolean Eoc => ParseEocReached();//Leds is { Green: On, Amber: Off, Blue : Off }; // ParseEocReached(); //
public UInt16 IoStates => _IoStates;
public UInt16 LimpBitMap => _LimpBitMap;
public String BatteryState => ParseBatteryState();