### Describe the problem
Hello everybody,
since two days I´m testing the dbu…s-serialbattery driver in use with a SEPLOS V3 BMS. Before that, more than one of a year there was a JK BMS connected and used successfully. With SEPLOS V3 charging, discharging and so on wokrs fine but there is one issue with CVL value in remote console. In config.ini I set the following values (which worked fine with the last used JK BMS):
MAX_CELL_VOLTAGE = 3.460
FLOAT_CELL_VOLTAGE = 3.375
Although the max_cell_voltage is set to 16 x 3.46 = 55,36V, the venus remote console shows a value of 57.6V which means that die parameter in config.ini might be ignored? I tried to find out why this happened, but I can´t find the reason. I would be very happy about any help, tanks.

### Driver version
1.3.20240428dev
### Venus OS device type
Raspberry Pi
### Venus OS version
3.20
### BMS type
Seplos
### Cell count
16
### Battery count
1
### Connection type
Serial USB adapter to RS485
### Config file
```ini
[DEFAULT]
; --------- Set logging level ---------
; ERROR: Only errors are logged
; WARNING: Errors and warnings are logged
; INFO: Errors, warnings and info messages are logged
; DEBUG: Errors, warnings, info and debug messages are logged
LOGGING = DEBUG
; --------- Battery Current limits ---------
MAX_BATTERY_CHARGE_CURRENT = 100.0
MAX_BATTERY_DISCHARGE_CURRENT = 70.0
; --------- Cell Voltages ---------
; Description: Cell min/max voltages which are used to calculate the min/max battery voltage
; Example: 16 cells * 3.45V/cell = 55.2V max charge voltage. 16 cells * 2.90V = 46.4V min discharge voltage
MIN_CELL_VOLTAGE = 2.900
; Max voltage can seen as absorption voltage
; 22.08.2023 Leier Testweise die max. Spannung auf 3,46V (55,36V) erhöht
MAX_CELL_VOLTAGE = 3.460
FLOAT_CELL_VOLTAGE = 3.375
; --------- SOC reset voltage ---------
; Description: May be needed to reset the SoC to 100% once in a while for some BMS, because of SoC drift.
; Specify the cell voltage where the SoC should be reset to 100% by the BMS.
; - JKBMS: SoC is reset to 100% if one cell reaches OVP (over voltage protection) voltage
; As you have to adopt this value to your system, I reccomend to start with
; OVP voltage - 0.030 (see Example).
; - Try to increase (add) by 0.005 in steps, if the system does not switch to float mode, even if
; the target voltage SOC_RESET_VOLTAGE * CELL_COUNT is reached.
; - Try to decrease (lower) by 0.005 in steps, if the system hits the OVP too fast, before all
; cells could be balanced and the system goes into protection mode multiple times.
; Example: If OVP is 3.650, then start with 3.620 and increase/decrease by 0.005
; Note: The value has to be higher as the MAX_CELL_VOLTAGE
SOC_RESET_VOLTAGE = 3.500
; Specify after how many days the soc reset voltage should be reached again
; The timer is reset when the soc reset voltage is reached
; Leave empty if you don't want to use this
; Example: Value is set to 15
; day 1: soc reset reached once
; day 16: soc reset reached twice
; day 31: soc reset not reached since it's very cloudy
; day 34: soc reset reached since the sun came out
; day 49: soc reset reached again, since last time it took 3 days to reach soc reset voltage
SOC_RESET_AFTER_DAYS =
; --------- Bluetooth BMS ---------
; Description: List the Bluetooth BMS here that you want to install
; -- Available Bluetooth BMS:
; Jkbms_Ble, LltJbd_Ble
; Example:
; 1 BMS: Jkbms_Ble C8:47:8C:00:00:00
; 3 BMS: Jkbms_Ble C8:47:8C:00:00:00, Jkbms_Ble C8:47:8C:00:00:11, Jkbms_Ble C8:47:8C:00:00:22
BLUETOOTH_BMS =
; --------- BMS disconnect behaviour ---------
; Description: Block charge and discharge when the communication to the BMS is lost. If you are removing the
; BMS on purpose, then you have to restart the driver/system to reset the block.
; False: Charge and discharge is not blocked on BMS communication loss
; True: Charge and discharge is blocked on BMS communication loss, it's unblocked when connection is established
; again or the driver/system is restarted
BLOCK_ON_DISCONNECT = False
; --------- Charge mode ---------
; Choose the mode for voltage / current limitations (True / False)
; False is a step mode: This is the default with limitations on hard boundary steps
; True is a linear mode:
; For CCL and DCL the values between the steps are calculated for smoother values (by WaldemarFech)
; For CVL max battery voltage is calculated dynamically in order that the max cell voltage is not exceeded
LINEAR_LIMITATION_ENABLE = True
; Specify in seconds how often the linear values should be recalculated
LINEAR_RECALCULATION_EVERY = 60
; Specify in percent when the linear values should be recalculated immediately
; Example: 5 for a immediate change, when the value changes by more than 5%
; 18.03.24 Leier: Wert testweise erhoeht LINEAR_RECALCULATION_ON_PERC_CHANGE = 5
LINEAR_RECALCULATION_ON_PERC_CHANGE = 10
; --------- Charge Voltage limitation (affecting CVL) ---------
; Description: Limit max charging voltage (MAX_CELL_VOLTAGE * cell count), switch from max voltage to float
; voltage (FLOAT_CELL_VOLTAGE * cell count) and back
; False: Max charging voltage is always kept
; True: Max charging voltage is reduced based on charge mode
; Step mode: After max voltage is reached for MAX_VOLTAGE_TIME_SEC it switches to float voltage. After
; SoC is below SOC_LEVEL_TO_RESET_VOLTAGE_LIMIT it switches back to max voltage.
; Linear mode: After max voltage is reachend and cell voltage difference is smaller or equal to
; CELL_VOLTAGE_DIFF_KEEP_MAX_VOLTAGE_UNTIL it switches to float voltage after 300 (fixed)
; additional seconds.
; After cell voltage difference is greater or equal to CELL_VOLTAGE_DIFF_TO_RESET_VOLTAGE_LIMIT
; OR
; SoC is below SOC_LEVEL_TO_RESET_VOLTAGE_LIMIT
; it switches back to max voltage.
; Example: The battery reached max voltage of 55.2V and hold it for 900 seconds, the the CVL is switched to
; float voltage of 53.6V to don't stress the batteries. Allow max voltage of 55.2V again, if SoC is
; once below 90%
; OR
; The battery reached max voltage of 55.2V and the max cell difference is 0.010V, then switch to float
; voltage of 53.6V after 300 additional seconds to don't stress the batteries. Allow max voltage of
; 55.2V again if max cell difference is above 0.080V or SoC below 90%.
; Charge voltage control management enable (True/False).
CVCM_ENABLE = True
; -- CVL reset based on cell voltage diff (linear mode)
; Specify cell voltage diff where CVL limit is kept until diff is equal or lower
CELL_VOLTAGE_DIFF_KEEP_MAX_VOLTAGE_UNTIL = 0.010
; Specify cell voltage diff where CVL limit is reset to max voltage, if value get above
; the cells are considered as imbalanced, if the cell diff exceeds 5% of the nominal cell voltage
; e.g. 3.2 V * 5 / 100 = 0.160 V
CELL_VOLTAGE_DIFF_TO_RESET_VOLTAGE_LIMIT = 0.080
; -- CVL reset based on SoC option (step mode)
; Specify how long the max voltage should be kept, if reached then switch to float voltage
; MAX_VOLTAGE_TIME_SEC = 900
; 22.08.2023 Leier: Ladeschlussspannung testweise fuer 2Stunden halten (für balancing)
; 17.02.2024 Leier: Statt 2Stunden halten auf 15min zurueck gestellt
MAX_VOLTAGE_TIME_SEC = 900
; Specify SoC where CVL limit is reset to max voltage, if value gets below
SOC_LEVEL_TO_RESET_VOLTAGE_LIMIT = 98
; --------- Cell Voltage Current limitation (affecting CCL/DCL) ---------
; Description: Maximal charge / discharge current will be in-/decreased depending on min and max cell voltages
; Example: 18 cells * 3.55V/cell = 63.9V max charge voltage
; 18 cells * 2.70V/cell = 48.6V min discharge voltage
; But in reality not all cells reach the same voltage at the same time. The (dis)charge current
; will be (in-/)decreased, if even ONE SINGLE BATTERY CELL reaches the limits
; Charge current control management referring to cell-voltage enable (True/False).
CCCM_CV_ENABLE = True
; Discharge current control management referring to cell-voltage enable (True/False).
DCCM_CV_ENABLE = True
; Set steps to reduce battery current
; The current will be changed linear between those steps if LINEAR_LIMITATION_ENABLE is set to True
; CELL_VOLTAGES_WHILE_CHARGING = 3.55, 3.50, 3.45, 3.30
; MAX_CHARGE_CURRENT_CV_FRACTION = 0.00, 0.05, 0.75, 1.00
; 22.08.2023 Leier: Ladestrom wird zu früh Zellspannungsabhängig reduziert
; 31.08.2023 Leier: Ladestrom wurde noch immer zu früh reduziert
; 17.02.2024 Leier: Ladestrom ab 3.45V auf 15A reduzieren
; 03.03.2024 Leier: Ladestrom ab 3.42V reduzieren
CELL_VOLTAGES_WHILE_CHARGING = 3.55, 3.50, 3.45, 3.40, 3.38, 3.35
MAX_CHARGE_CURRENT_CV_FRACTION = 0.00, 0.05, 0.20, 0.7, 0.9, 1.00
CELL_VOLTAGES_WHILE_DISCHARGING = 2.70, 2.80, 2.90, 3.00, 3.10
MAX_DISCHARGE_CURRENT_CV_FRACTION = 0, 0, 0.2, 1, 1
; --------- Temperature limitation (affecting CCL/DCL) ---------
; Description: Maximal charge / discharge current will be in-/decreased depending on temperature
; Example: The temperature limit will be monitored to control the currents. If there are two temperature senors,
; then the worst case will be calculated and the more secure lower current will be set.
; Charge current control management referring to temperature enable (True/False).
CCCM_T_ENABLE = True
; Charge current control management referring to temperature enable (True/False).
DCCM_T_ENABLE = True
; Set steps to reduce battery current
; The current will be changed linear between those steps if LINEAR_LIMITATION_ENABLE is set to True
;TEMPERATURE_LIMITS_WHILE_CHARGING = 0, 2, 5, 10, 15, 20, 35, 40, 55
;MAX_CHARGE_CURRENT_T_FRACTION = 0, 0.05, 0.11, 0.4, 0.53, 1, 1, 0.75, 0
TEMPERATURE_LIMITS_WHILE_CHARGING = 0, 3, 6, 8, 11, 13, 15, 17, 20, 22, 36, 42, 48, 54, 60
MAX_CHARGE_CURRENT_T_FRACTION = 0, 0.10, 0.10, 0.38, 0.38, 0.50, 0.50, 0.50, 0.85, 1, 1, 0.95, 0.78, 0.40, 0
TEMPERATURE_LIMITS_WHILE_DISCHARGING = -20, -10, 0, 5, 10, 15, 20, 30, 35, 45
MAX_DISCHARGE_CURRENT_T_FRACTION = 0, 0.15, 0.3, 0.5, 0.85, 0.95, 1, 1, 0.75, 0
; --------- SOC limitation (affecting CCL/DCL) ---------
; Description: Maximal charge / discharge current will be increased / decreased depending on State of Charge,
; see CC_SOC_LIMIT1 etc.
; Example: The SoC limit will be monitored to control the currents.
; Charge current control management enable (True/False).
; CCCM_SOC_ENABLE = True
CCCM_SOC_ENABLE = False
; Discharge current control management enable (True/False).
; DCCM_SOC_ENABLE = True
DCCM_SOC_ENABLE = False
; Charge current soc limits
CC_SOC_LIMIT1 = 98
CC_SOC_LIMIT2 = 95
CC_SOC_LIMIT3 = 91
; Charge current limits
CC_CURRENT_LIMIT1_FRACTION = 0.1
CC_CURRENT_LIMIT2_FRACTION = 0.3
CC_CURRENT_LIMIT3_FRACTION = 0.5
; Discharge current soc limits
DC_SOC_LIMIT1 = 10
DC_SOC_LIMIT2 = 20
DC_SOC_LIMIT3 = 30
; Discharge current limits
DC_CURRENT_LIMIT1_FRACTION = 0.1
DC_CURRENT_LIMIT2_FRACTION = 0.3
DC_CURRENT_LIMIT3_FRACTION = 0.5
; --------- Time-To-Go ---------
; Description: Calculates the time to go shown in the GUI
; Recalculation is done based on TIME_TO_SOC_RECALCULATE_EVERY
TIME_TO_GO_ENABLE = True
; --------- Time-To-Soc ---------
; Description: Calculates the time to a specific SoC
; Example: TIME_TO_SOC_POINTS = 50, 25, 15, 0
; 6h 24m remaining until 50% SoC
; 17h 36m remaining until 25% SoC
; 22h 5m remaining until 15% SoC
; 28h 48m remaining until 0% SoC
; Set of SoC percentages to report on dbus and MQTT. The more you specify the more it will impact system performance.
; [Valid values 0-100, comma separated list. More that 20 intervals are not recommended]
; Example: TIME_TO_SOC_POINTS = 100, 95, 90, 85, 75, 50, 25, 20, 10, 0
; Leave empty to disable
TIME_TO_SOC_POINTS =
; Specify TimeToSoc value type [Valid values 1, 2, 3]
; 1 Seconds
; 2 Time string <days>d <hours>h <minutes>m <seconds>s
; 3 Both seconds and time string "<seconds> [<days>d <hours>h <minutes>m <seconds>s]"
TIME_TO_SOC_VALUE_TYPE = 1
; Specify in seconds how often the TimeToSoc should be recalculated
; Minimum are 5 seconds to prevent CPU overload
TIME_TO_SOC_RECALCULATE_EVERY = 60
; Include TimeToSoC points when moving away from the SoC point [Valid values True, False]
; These will be as negative time. Disabling this improves performance slightly
TIME_TO_SOC_INC_FROM = False
; --------- Additional settings ---------
; Specify only one BMS type to load else leave empty to try to load all available
; -- Available BMS:
; Daly, Ecs, HeltecModbus, HLPdataBMS4S, Jkbms, Lifepower, LltJbd, Renogy, Seplos
; -- Available BMS, but disabled by default:
; https://louisvdw.github.io/dbus-serialbattery/general/install#how-to-enable-a-disabled-bms
; Ant, MNB, Sinowealth
; BMS_TYPE = Jkbms
BMS_TYPE =
; Publish the config settings to the dbus path "/Info/Config/"
PUBLISH_CONFIG_VALUES = 1
; Select the format of cell data presented on dbus [Valid values 0,1,2,3]
; 0 Do not publish all the cells (only the min/max cell data as used by the default GX)
; 1 Format: /Voltages/Cell (also available for display on Remote Console)
; 2 Format: /Cell/#/Volts
; 3 Both formats 1 and 2
BATTERY_CELL_DATA_FORMAT = 1
; Simulate Midpoint graph (True/False).
MIDPOINT_ENABLE = False
; Battery temperature
; Specify how the battery temperature is assembled
; 0 Get mean of temperature sensor 1 to sensor 4
; 1 Get only temperature from temperature sensor 1
; 2 Get only temperature from temperature sensor 2
; 3 Get only temperature from temperature sensor 3
; 4 Get only temperature from temperature sensor 4
TEMP_BATTERY = 0
; Temperature sensor 1 name
TEMP_1_NAME = Temp 1
; Temperature sensor 2 name
TEMP_2_NAME = Temp 2
; Temperature sensor 2 name
TEMP_3_NAME = Temp 3
; Temperature sensor 2 name
TEMP_4_NAME = Temp 4
; --------- BMS specific settings ---------
; -- LltJbd settings
; SoC low levels
; NOTE: SOC_LOW_WARNING is also used to calculate the Time-To-Go even if you are not using a LltJbd BMS
SOC_LOW_WARNING = 20
SOC_LOW_ALARM = 10
; -- Daly settings
; Battery capacity (amps), if the BMS does not support reading it
BATTERY_CAPACITY = 50
; Invert Battery Current. Default non-inverted. Set to -1 to invert
INVERT_CURRENT_MEASUREMENT = 1
; -- ESC GreenMeter and Lipro device settings
GREENMETER_ADDRESS = 1
LIPRO_START_ADDRESS = 2
LIPRO_END_ADDRESS = 4
LIPRO_CELL_COUNT = 15
; -- HeltecModbus (Heltec SmartBMS/YYBMS) settings
; Set the Modbus addresses from the adapters
; Separate each address to check by a comma like: 1, 2, 3, ...
; factory default address will be 1
HELTEC_MODBUS_ADDR = 1
; --------- Battery monitor specific settings ---------
; If you are using a SmartShunt or something else as a battery monitor, the battery voltage reported
; from the BMS and SmartShunt could differ. This causes, that the driver never goapplies the float voltage,
; since max voltage is never reached.
; Example:
; cell count: 16
; MAX_CELL_VOLTAGE = 3.45
; max voltage calculated = 16 * 3.45 = 55.20
; CVL is set to 55.20 and the battery is now charged until the SmartShunt measures 55.20 V. The BMS
; now measures 55.05 V since there is a voltage drop of 0.15 V. Since the dbus-serialbattery measures
; 55.05 V the max voltage is never reached for the driver and max voltage is kept forever.
; Set VOLTAGE_DROP to 0.15
VOLTAGE_DROP = 0.00
```
### Relevant log output
```shell
2024-05-13 16:08:44.291094500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:44.305797500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:44.306604500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.331V [6]3.334V [7]3.333V [8]3.334V [9]3.331V [10]3.333V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:45.322694500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:45.323200500 DEBUG:SerialBattery:pia: [5332, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:45.323700500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3331, 3334, 3333, 3334, 3331, 3333, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2978]
2024-05-13 16:08:45.324131500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 7967]
2024-05-13 16:08:45.324734500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:45.325456500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:45.326544500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:45.347493500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:45.348415500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.331V [6]3.334V [7]3.333V [8]3.334V [9]3.331V [10]3.333V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:46.313598500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:46.314098500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:46.314674500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3331, 3334, 3333, 3334, 3331, 3333, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2978]
2024-05-13 16:08:46.315149500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 8224]
2024-05-13 16:08:46.315838500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:46.316570500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:46.317738500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:46.333579500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:46.334432500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.331V [6]3.334V [7]3.333V [8]3.334V [9]3.331V [10]3.333V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:47.321361500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:47.322048500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:47.322571500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3331, 3334, 3334, 3334, 3331, 3333, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:47.323003500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 8481]
2024-05-13 16:08:47.323609500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:47.324333500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:47.325430500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:47.338906500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:47.342400500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.331V [6]3.334V [7]3.334V [8]3.334V [9]3.331V [10]3.333V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:48.311842500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:48.312371500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:48.312916500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3331, 3334, 3334, 3334, 3331, 3333, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:48.313347500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 8738]
2024-05-13 16:08:48.314027500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:48.314785500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:48.315939500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:48.325744500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:48.326657500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.331V [6]3.334V [7]3.334V [8]3.334V [9]3.331V [10]3.333V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:49.302702500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:49.310736500 DEBUG:SerialBattery:pia: [5332, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:49.310746500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3333, 3334, 3331, 3333, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:49.310756500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 8995]
2024-05-13 16:08:49.310759500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:49.310796500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:49.310861500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:49.325527500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:49.326700500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.333V [8]3.334V [9]3.331V [10]3.333V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:50.309418500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:50.309913500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:50.310408500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3331, 3334, 3333, 3334, 3331, 3333, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2978]
2024-05-13 16:08:50.310841500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 9252]
2024-05-13 16:08:50.311527500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:50.312253500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:50.313344500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:50.326422500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:50.328317500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.331V [6]3.334V [7]3.333V [8]3.334V [9]3.331V [10]3.333V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:51.316630500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:51.317147500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:51.317698500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3331, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2978]
2024-05-13 16:08:51.318128500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 9509]
2024-05-13 16:08:51.318799500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:51.319620500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:51.320813500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:51.334737500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:51.337821500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.331V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:52.323570500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:52.324150500 DEBUG:SerialBattery:pia: [5332, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:52.324646500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3331, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2978]
2024-05-13 16:08:52.325116500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 9766]
2024-05-13 16:08:52.325745500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:52.326535500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:52.327663500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:52.340311500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:52.342862500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.331V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:53.313653500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:53.314174500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:53.314668500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3331, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:53.315095500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 10023]
2024-05-13 16:08:53.315693500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:53.316422500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:53.317511500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:53.337510500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:53.339021500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.331V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:54.321584500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:54.328225500 DEBUG:SerialBattery:pia: [5332, 253, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:54.328234500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3331, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:54.328243500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 10280]
2024-05-13 16:08:54.328246500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:54.328286500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:54.328352500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:54.338935500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:54.341739500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.331V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
tail: /data/log/dbus-serialbattery.ttyUSB1/current has been replaced; following end of new file
2024-05-13 16:08:55.307839500 DEBUG:SerialBattery:pia: [5332, 253, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:55.307850500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3331, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:55.307859500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 10537]
2024-05-13 16:08:55.307863500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:55.308010500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:55.308085500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:55.311578500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:55.312600500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.331V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:56.303051500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:56.303796500 DEBUG:SerialBattery:pia: [5332, 253, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:56.304409500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:56.304952500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 10794]
2024-05-13 16:08:56.305746500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:56.306601500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:56.307824500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:56.317981500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:56.319754500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:57.326619500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:57.327230500 DEBUG:SerialBattery:pia: [5332, 253, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:57.327727500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2981, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:57.328230500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 11051]
2024-05-13 16:08:57.328858500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:57.329673500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:57.330867500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:57.345552500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:57.346359500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:58.317537500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:58.318119500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:58.318690500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2981, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:58.319189500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 11308]
2024-05-13 16:08:58.320974500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:58.321928500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:58.323161500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:58.338947500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:58.339864500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:08:59.308671500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:08:59.309161500 DEBUG:SerialBattery:pia: [5332, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2981, 3334, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:08:59.309654500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2983, 2982, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:08:59.310082500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 11565]
2024-05-13 16:08:59.310684500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:08:59.311549500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:08:59.312634500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:08:59.345927500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:08:59.349550500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:00.331426500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:00.332377500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2981, 3334, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:00.333044500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2983, 2982, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:00.333609500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 11822]
2024-05-13 16:09:00.334329500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:00.335179500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:00.336512500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:00.347795500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:00.350586500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:01.337490500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:01.337984500 DEBUG:SerialBattery:pia: [5332, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2981, 3334, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:01.338473500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2983, 2982, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:01.338906500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 12079]
2024-05-13 16:09:01.339507500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:01.340237500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:01.341431500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:01.356765500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:01.357826500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:02.344738500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:02.345491500 DEBUG:SerialBattery:pia: [5332, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2981, 3334, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:02.346102500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2983, 2982, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2978]
2024-05-13 16:09:02.346656500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 12336]
2024-05-13 16:09:02.347368500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:02.348220500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:02.349645500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:02.364745500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:02.365906500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:03.334961500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:03.335446500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:03.335937500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3333, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:03.336365500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 12593]
2024-05-13 16:09:03.336965500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:03.337695500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:03.338768500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:03.352573500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:03.355178500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:04.342826500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:04.343582500 DEBUG:SerialBattery:pia: [5332, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:04.344190500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3331, 3334, 3332, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:04.344742500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 12850]
2024-05-13 16:09:04.345452500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:04.346412500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:04.347664500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:04.364022500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:04.367036500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.331V [10]3.334V [11]3.332V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
tail: /data/log/dbus-serialbattery.ttyUSB1/current has been replaced; following end of new file
2024-05-13 16:09:05.362607500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:05.370299500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:05.372608500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:06.340509500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:06.341371500 DEBUG:SerialBattery:pia: [5333, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:06.342016500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3333, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:06.342562500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 13364]
2024-05-13 16:09:06.343376500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:06.344299500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:06.345529500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:06.355115500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:06.356189500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:07.379288500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:07.379889500 DEBUG:SerialBattery:pia: [5332, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:07.380384500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3333, 3332, 3332, 3332, 3332, 3333, 2983, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:07.380942500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 13621]
2024-05-13 16:09:07.381766500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:07.382605500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:07.383817500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:07.419767500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:07.420843500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:08.370123500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:08.370633500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3335, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:08.371241500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3332, 3332, 3334, 3334, 3335, 3332, 3334, 3333, 3332, 3332, 3332, 3332, 3333, 2983, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:08.371680500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 13878]
2024-05-13 16:09:08.372294500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:08.373028500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:08.374112500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:08.389547500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:08.390534500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:09.344947500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:09.345443500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3335, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:09.345935500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3335, 3332, 3334, 3333, 3332, 3332, 3332, 3332, 3333, 2983, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:09.346386500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 14135]
2024-05-13 16:09:09.346984500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:09.347708500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:09.348787500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:09.359190500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:09.360214500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:10.383507500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:10.384384500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:10.385043500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3334, 3334, 3334, 3332, 3334, 3333, 3332, 3332, 3332, 3332, 3333, 2983, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:10.385600500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 14392]
2024-05-13 16:09:10.386406500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:10.387276500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:10.388515500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:10.407333500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:10.408295500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:11.343532500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:11.344356500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:11.344889500 DEBUG:SerialBattery:pib: [3333, 3334, 3331, 3332, 3332, 3335, 3334, 3334, 3332, 3334, 3333, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:11.345331500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 14649]
2024-05-13 16:09:11.345944500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:11.346659500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:11.347755500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:11.361951500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:11.363569500 DEBUG:SerialBattery:Cells:[1]3.333V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.335V [7]3.334V [8]3.334V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:12.381747500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:12.382271500 DEBUG:SerialBattery:pia: [5333, 252, 26208, 28000, 48, 936, 1000, 2, 3332, 2982, 3334, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:12.382942500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3332, 3332, 3334, 3334, 3335, 3332, 3334, 3333, 3332, 3332, 3332, 3332, 3333, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:12.383386500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 14906]
2024-05-13 16:09:12.384103500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:12.384863500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:12.386037500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:12.401557500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:12.403053500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.334V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.332V [16]3.333V
2024-05-13 16:09:13.373397500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:13.374231500 DEBUG:SerialBattery:pia: [5333, 252, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:13.374834500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3332, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3332, 3332, 3332, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:13.375371500 DEBUG:SerialBattery:sca: [59399, 1294, 9, 15163]
2024-05-13 16:09:13.376073500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:13.376910500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:13.378121500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:13.397139500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:13.398513500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.332V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:14.380585500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:14.381412500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:14.382053500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3332, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3332, 3333, 3332, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:14.382587500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 0]
2024-05-13 16:09:14.383297500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:14.384132500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:14.385354500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:14.398661500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:14.400700500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:15.387586500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:15.393783500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:15.393792500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3332, 3333, 3332, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:15.393801500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 257]
2024-05-13 16:09:15.393804500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:15.393841500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:15.393907500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:15.403853500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:15.404882500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
tail: /data/log/dbus-serialbattery.ttyUSB1/current has been replaced; following end of new file
2024-05-13 16:09:16.391574500 DEBUG:SerialBattery:pia: [5333, 252, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:16.391585500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3332, 3333, 3332, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:16.391594500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 514]
2024-05-13 16:09:16.391597500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:16.391749500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:16.391871500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:16.405157500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:16.406085500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.332V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:17.385549500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:17.386322500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:17.386962500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3332, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3332, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:17.387520500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 771]
2024-05-13 16:09:17.388248500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:17.389183500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:17.390459500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:17.409859500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:17.412614500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.332V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:18.375732500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:18.376283500 DEBUG:SerialBattery:pia: [5333, 250, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:18.376817500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3332, 3333, 3334, 2984, 2982, 2980, 2982, 2731, 2731, 2731, 2731, 2992, 2977]
2024-05-13 16:09:18.377276500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 1028]
2024-05-13 16:09:18.377894500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:18.378639500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:18.379789500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:18.407292500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:18.408328500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:19.367916500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:19.368611500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:19.369160500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3332, 3333, 3334, 2984, 2982, 2980, 2982, 2731, 2731, 2731, 2731, 2992, 2977]
2024-05-13 16:09:19.369716500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 1285]
2024-05-13 16:09:19.370396500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:19.371447500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:19.372841500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:19.391898500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:19.392914500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:20.406012500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:20.406874500 DEBUG:SerialBattery:pia: [5333, 250, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:20.407558500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3332, 3333, 3334, 2984, 2982, 2980, 2982, 2731, 2731, 2731, 2731, 2992, 2977]
2024-05-13 16:09:20.408171500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 1542]
2024-05-13 16:09:20.408951500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:20.409861500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:20.411325500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:20.429520500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:20.430681500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:21.396374500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:21.397868500 DEBUG:SerialBattery:pia: [5333, 250, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:21.398498500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3332, 3333, 3334, 2984, 2982, 2980, 2982, 2731, 2731, 2731, 2731, 2992, 2977]
2024-05-13 16:09:21.399020500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 1799]
2024-05-13 16:09:21.399704500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:21.400601500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:21.402035500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:21.414049500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:21.414985500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:22.355697500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:22.356483500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:22.357194500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3332, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2978]
2024-05-13 16:09:22.357706500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 2056]
2024-05-13 16:09:22.358358500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:22.359323500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:22.360521500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:22.378198500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:22.381308500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:23.362434500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:23.363187500 DEBUG:SerialBattery:pia: [5333, 252, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:23.363796500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3332, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:23.364326500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 2313]
2024-05-13 16:09:23.365024500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:23.365851500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:23.369451500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:23.389721500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:23.391251500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:24.370519500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:24.371100500 DEBUG:SerialBattery:pia: [5333, 252, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:24.371723500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3332, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:24.372156500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 2570]
2024-05-13 16:09:24.372760500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:24.373484500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:24.374575500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:24.386682500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:24.389869500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.332V [15]3.333V [16]3.334V
2024-05-13 16:09:25.377059500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:25.377921500 DEBUG:SerialBattery:pia: [5333, 252, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:25.378601500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3333, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:25.379189500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 2827]
2024-05-13 16:09:25.379930500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:25.380996500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:25.382464500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:25.403542500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:25.404618500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.333V [15]3.333V [16]3.334V
tail: /data/log/dbus-serialbattery.ttyUSB1/current has been replaced; following end of new file
2024-05-13 16:09:26.383862500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:26.387294500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:26.390192500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.333V [15]3.333V [16]3.334V
2024-05-13 16:09:27.373769500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:27.374494500 DEBUG:SerialBattery:pia: [5333, 251, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2984, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:27.375088500 DEBUG:SerialBattery:pib: [3334, 3334, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3333, 3333, 3334, 2984, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:27.375616500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 3341]
2024-05-13 16:09:27.376306500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:27.377140500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:27.378322500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:27.387471500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:27.388059500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.334V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.333V [15]3.333V [16]3.334V
2024-05-13 16:09:28.381314500 DEBUG:SerialBattery:spa: [4, 16, 5400, 5600, 5680, 5760, 4800, 4640, 4800, 4320, 3400, 3500, 3500, 3600, 3100, 2900, 3000, 2700, 2500, 800, 500, 140, 150, 180, 100, 280, 300, 65396, 65356, 65336, 50, 65236, 300, 65236, 106, 600, 5, 3000, 205, 10, 3500, 3400, 1500, 1000, 800, 200, 30, 3111, 3131, 3151, 3181, 2781, 2751, 2731, 2631, 3111, 3131, 3151, 3181, 2761, 2631, 2731, 2581, 3201, 3231, 3281, 3331, 2761, 2731, 2731, 2631, 3531, 3581, 3581, 3681, 2831, 2731, 3231, 2731, 10, 3500, 50, 30, 960, 230, 200, 150, 100, 28000, 28000, 26208, 48, 60, 240, 10, 7, 0, 13, 0, 500, 300, 5552, 140, 65396, 9, 8]
2024-05-13 16:09:28.381822500 DEBUG:SerialBattery:pia: [5333, 252, 26208, 28000, 48, 936, 1000, 2, 3333, 2982, 3335, 3331, 2983, 2980, 0, 140, 140, 1000]
2024-05-13 16:09:28.382313500 DEBUG:SerialBattery:pib: [3334, 3335, 3331, 3333, 3332, 3335, 3334, 3335, 3332, 3334, 3333, 3333, 3333, 3333, 3333, 3334, 2983, 2983, 2980, 2982, 2731, 2731, 2731, 2731, 2993, 2977]
2024-05-13 16:09:28.382744500 DEBUG:SerialBattery:sca: [59399, 1294, 10, 3598]
2024-05-13 16:09:28.383345500 DEBUG:SerialBattery:sfa: [1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 1, 1, 0]
2024-05-13 16:09:28.384068500 DEBUG:SerialBattery:pic: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
2024-05-13 16:09:28.385166500 DEBUG:SerialBattery:Updating Seplos v3 Pack_3 SP18B2312010006
2024-05-13 16:09:28.401567500 DEBUG:SerialBattery:logged to dbus [93.6]
2024-05-13 16:09:28.402570500 DEBUG:SerialBattery:Cells:[1]3.334V [2]3.335V [3]3.331V [4]3.333V [5]3.332V [6]3.335V [7]3.334V [8]3.335V [9]3.332V [10]3.334V [11]3.333V [12]3.333V [13]3.333V [14]3.333V [15]3.333V [16]3.334V
```
### Any other information that may be helpful
_No response_