Hi, I’ve got an EV6 (EU) and I’m new to the whole Home Assistant automation world. I’ve got some automation that is successfully triggering the climate control - can set the aircon, rear defrost, heated steering wheel, etc, but:
I can’t seem to get the front heated seats to work? I’ve tried the different options (on, low, medium & high heat) - none seem to make a difference.
Is this just not supported on EU EV6 or am I doing something wrong? Here’s what I’m sending:
It is probably a safety feature by KIA - maybe you need to have weight on the seat for it to work (edit: nope - just tried that out and still doesn’t work) - or it will only work when the car is actually running.
then this automation will push the telemetry each time an update is received by the integration:
alias: Télémétrie KONA vers ABRP
description: ''
triggers:
- trigger: state
entity_id:
- sensor.kona_last_updated_at
conditions: []
actions:
- action: rest_command.update_abrp
data: {}
response_variable: status
mode: single
Now I have to figure out what are the best value for scan without beeing locked until the rest of the day (got “to many request” error in bluelink app while playing with ABRP)
The update interval of 30 min will only get the latest status from the KIA server.
If the car has not uploaded anything new in the last 30min, than you will see no change.
If you want the current status, do a forced update - but be aware, that this will wake-up the car every time you do this.
I don’t know if this is the right place, but I did a password reset, and I don’t know how to change the password in the intergration.
Unexpected error fetching kia_uvo data
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/update_coordinator.py", line 379, in _async_refresh
self.data = await self._async_update_data()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/config/custom_components/kia_uvo/coordinator.py", line 107, in _async_update_data
await self.async_check_and_refresh_token()
File "/config/custom_components/kia_uvo/coordinator.py", line 169, in async_check_and_refresh_token
await self.hass.async_add_executor_job(
self.vehicle_manager.check_and_refresh_token
)
File "/usr/local/lib/python3.13/concurrent/futures/thread.py", line 58, in run
result = self.fn(*self.args, **self.kwargs)
File "/usr/local/lib/python3.13/site-packages/hyundai_kia_connect_api/VehicleManager.py", line 136, in check_and_refresh_token
self.initialize()
~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.13/site-packages/hyundai_kia_connect_api/VehicleManager.py", line 75, in initialize
self.token: Token = self.api.login(self.username, self.password)
~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.13/site-packages/hyundai_kia_connect_api/HyundaiBlueLinkApiUSA.py", line 136, in login
access_token = response["access_token"]
~~~~~~~~^^^^^^^^^^^^^^^^
KeyError: 'access_token'
I suspect it was an error in the password, which makes sense.
thanks, with that i made a sensor for daily consumption and a sensor for the month consumption, now i cant find a way to convert kw/h in €, the electricity cost is always the same
Make a template sensor where you mulitply the ammount of kWh used (in the example it is called sensor.stromverbrauch_der letzten_24h) with the USD price per kWh (in the example I used 25 Cents, you obviously have to use your price - or if that price is variable the state of that price sensor)
I have a lovelace button set up to call the climate start service which works fine. I wanted to automate the process so I created a service call in Node-RED. It worked fine first time but now throws up an error
“HomeAssistantError: Unavailable remote control - Service Temporary Unavailable”
The lovelace button still works to call the service but for some reason it cannot be called from Node-RED. Does anyone have any ideas?