Skip to content

Commit eb385c4

Browse files
committed
Fix ChargeState
1 parent 280c7aa commit eb385c4

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

teslemetry_stream/const.py

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -350,13 +350,14 @@ def upper_options(self) -> list[str]:
350350
return [option.upper() for option in self.options]
351351

352352
ChargeState = TeslemetryEnum("ChargeState",[
353-
'Unknown',
354-
'Disconnected',
355-
'NoPower',
356-
'Starting',
357-
'Charging',
358-
'Complete',
359-
'Stopped'
353+
'Idle',
354+
'ClearFaults',
355+
'Enable',
356+
'QualifyLineConfig',
357+
'Shutdown',
358+
'Startup',
359+
'SystemConfig',
360+
'WaitForLineVoltage'
360361
])
361362

362363
DetailedChargeState = TeslemetryEnum('DetailedChargeState',[

0 commit comments

Comments
 (0)