Skip to content

Commit

Permalink
feat(EU): add EV charging speed in kW
Browse files Browse the repository at this point in the history
  • Loading branch information
asychow committed Nov 17, 2024
1 parent 178584f commit 4131513
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions hyundai_kia_connect_api/KiaUvoApiEU.py
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,11 @@ def _update_vehicle_properties(self, vehicle: Vehicle, state: dict) -> None:
vehicle.ev_charge_port_door_is_open = True
elif ev_charge_port_door_is_open == 2:
vehicle.ev_charge_port_door_is_open = False

vehicle.ev_charging_power = get_child_value(
state, "vehicleStatus.evStatus.batteryPower.batteryStndChrgPower"
)

if (
get_child_value(
state,
Expand Down

0 comments on commit 4131513

Please sign in to comment.