Replies: 2 comments
-
Not sure what do you mean all of them became 98.6 give an example with picture if possible |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi,
I can reliably reproduce that reloading the integration adds 98.6 degrees to the last value of the state of the temperature sensor for the wifi devices. First screen shot is the tuya local integration temperature readings. The second is using the tuya cloud based integration.
***@***.***
***@***.***
To combat this I have created a sensor template with the following code:
{% if states('sensor.garage_local_temperature_3') | lower == "unavailable" %}
{{ (states('sensor.garage_temp_fixed') | float) }}
{%- else -%}
{% if (states('sensor.garage_local_temperature_3') | float - states('sensor.garage_temp_fixed') | float) | abs > 10 %}
{{ (states('sensor.garage_temp_fixed') | float) }}
{%- else -%}
{{ (states('sensor.garage_local_temperature_3') | float) }}
{%- endif -%}
{%- endif -%}
There does not seem to be a problem with the humidity sensor on the same devices.
Please let me know if you need more information,
Matt
From: Bander ***@***.***>
Sent: Monday, March 10, 2025 6:13 PM
To: xZetsubou/hass-localtuya ***@***.***>
Cc: Matt Rolf ***@***.***>; Author ***@***.***>
Subject: Re: [xZetsubou/hass-localtuya] Wifi temperature senors add 98.6 to previous value when integration is reloaded (Discussion #602)
Not sure what do you mean all of them became 98.6 give an example with picture if possible
—
Reply to this email directly, view it on GitHub<#602 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/BIP3EBQIGSJN2EWPS4MXO232TYE6NAVCNFSM6AAAAABYWTTDNKVHI2DSMVQWIX3LMV43URDJONRXK43TNFXW4Q3PNVWWK3TUHMYTENBVGQ4TMNA>.
You are receiving this because you authored the thread.Message ID: ***@***.******@***.***>>
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What is the recommended method of countering that when the integration is reloaded all the wifi temp sensors get 98.6 added to their previous value?
Beta Was this translation helpful? Give feedback.
All reactions