-
-
Notifications
You must be signed in to change notification settings - Fork 9
Tire info not available #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
The problem is most likely related to the car's software. Since v3.3.16 I stopped receiving the tyre info. The tyre info is also missing on https://www.volvocars.com/uk/account/my-cars/. We'll have to wait until Volvo fixes it. |
Well, this is really interesting because the tire info is still sent over Volvo to mqtt. Just switched from there to your integration in the morning due to several issues and on my petrol car, the information is still present to your integration, but for my electric car it’s not in addition what I am missing is the time to end for charging which was presented by the MQTT at on as well. Any news on that topic Thanks for the great integration and keeping it up while the other has been deprecated due to your great work |
I would be surprised if volvo2mqtt could still show the tyre information because it uses the same API as I do. You probably just see the latest value it received. To try out, you should deflate your tyre and see if the value changes. 😄 Jokes aside, it's probably model and/or car software version related. If I go to the website mentioned above, then I see "N/A" for tyre status. You can create a helper sensor to get the time to end:
{% set charging_time = states('sensor.volvo_xc40_estimated_charging_time') | int(0) %}
{% if charging_time > 0 -%}
{% set new_time = now() + timedelta(minutes=charging_time) %}
{% set current_time = this.state | as_datetime %}
{% if not current_time or (as_datetime(new_time) - current_time).total_seconds() | abs > 900 %}
{{ new_time }}
{% else %}
{{ this.state }}
{% endif %}
{%- else -%}
{{ this.state }}
{%- endif %} |
Yeah, you are probably right. :-) Anyway thanks. I solved my topic with an automation and creating an input_datetime helper already. alias: Ladeendzeit berechnen
|
What happened?
Hello, great addon (coming from volvo2mqtt), love the possibility to remote start engine and have several accounts.
I have tested to add one XC40 MY25 and one XC60 MY24 and get around 70 entities per vehicles, but I dont get any tire info entities for either of the vehicles, I saw that tire status was mentioned on the info page so I thought I let you know.
Thanks!
API availability
OK
Car connection
Available
Additional information
No response
Diagnostics
No response
The text was updated successfully, but these errors were encountered: