Closed eltoro0815 closed 5 months ago
Seeing the same with my Renault Megane E-Tech
My car doesn't support this endpoint - so I am unable to confirm.
Can someone open a PR?
The same here, lots of error messages since yesterday. My Car is aTwingo electric.
Logger: homeassistant.components.renault.renault_vehicle
Quelle: helpers/update_coordinator.py:315
Integration: Renault (Dokumentation, Probleme)
Erstmals aufgetreten: 14:34:02 (15 Vorkommnisse)
Zuletzt protokolliert: 16:12:03
Unexpected error fetching VF1AH00********** hvac_status data
Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/update_coordinator.py", line 315, in _async_refresh
self.data = await self._async_update_data()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/src/homeassistant/homeassistant/components/renault/coordinator.py", line 57, in _async_update_data
data = await self.update_method()
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/renault_api/renault_vehicle.py", line 160, in get_hvac_status
response.get_attributes(schemas.KamereonVehicleHvacStatusDataSchema),
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/renault_api/kamereon/models.py", line 353, in get_attributes
cast(KamereonVehicleDataAttributes, schema.load(self.data.attributes))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/marshmallow_dataclass/__init__.py", line 910, in load
all_loaded = super().load(data, many=many, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/marshmallow/schema.py", line 723, in load
return self._do_load(
^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/marshmallow/schema.py", line 910, in _do_load
raise exc
marshmallow.exceptions.ValidationError: {'hvacStatus': ['Not a valid string.']}
Same here Captur E-tech 2021
I assume 1 means "off", and 2 means "on"... PR #1211 has been merged Release v0.2.3 is available: https://github.com/hacf-fr/renault-api/releases/tag/v0.2.3 This should be available in Home Assistant 2024.6: https://github.com/home-assistant/core/pull/118718
Yes, that's correct!
1 = off
2 = on
Today, the endpoint for DACIA SPRING return strings again. I get "hvacStatus": "off"
. To mitigate this, I changed in the code the type of hvacStatus from hvacStatus: Optional[int]
to hvacStatus: Optional[int] | Optional[str]
The car called is a DACIA SPRING.
The following Error is displayed:
marshmallow.exceptions.ValidationError: {'hvacStatus': ['Not a valid string.']}
Doing the request with Postman the following Json is returned by the server:
The attribute "hvacStatus" has changed it's type.
Has been of type String and the possible Return Values where "on" and "off"
Looks like now you get an integer instead.