-
Notifications
You must be signed in to change notification settings - Fork 209
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
AC shows incorrect temperature #15
Comments
@Zaiban Can you provide the device's specification from log, whick like this: [tuya-openapi] Request: method = GET, url = https://openapi.tuyacn.com/v1.0/devices/vdevo162372586962985/specifications, params = None, body = None, headers = {'client_id': 'xxxxxxxxx', 'sign': '8CAE7BB56BCB387542497366C4D84BCD02F588FE2D3F5F351C20EA1A17981A68', 'sign_method': 'HMAC-SHA256', 'access_token': 'xxxxxxxxxxx', 't': '1624071158713', 'lang': 'en'} |
[tuya-openapi] Request: method = GET, url = https://openapi.tuyaeu.com/v1.0/devices/05005047483fda0efb25/specifications, params = None, body = None, headers = {'client_id': 'xxxx', 'sign': 'A5548D8F561BC8FC67C5172325A927A29645B45E1280376CE5883F22F4EDDC75', 'sign_method': 'HMAC-SHA256', 'access_token': 'xxxx', 't': '1624174087218', 'lang': 'en'} |
@Zaiban Get it. This bug will be fixed soon. |
Waiting for a fix for this as well |
It seems you've deleted the version field in manifest.json. This will not work in the current version of Home Assisstant!
|
@tsutsuku After fixing the missing version, multiple errors, including the original climate one Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 250, in _async_setup_platform
await asyncio.shield(task)
File "/config/custom_components/tuya_v2/fan.py", line 72, in async_setup_entry
await async_discover_device(device_ids)
File "/config/custom_components/tuya_v2/fan.py", line 56, in async_discover_device
_LOGGER(f"fan add-> {dev_ids}")
TypeError: 'Logger' object is not callable Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 250, in _async_setup_platform
await asyncio.shield(task)
File "/config/custom_components/tuya_v2/humidifier.py", line 42, in async_setup_entry
_LOGGER("humidifier init")
TypeError: 'Logger' object is not callable Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 383, in async_add_entities
await asyncio.gather(*tasks)
File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 588, in _async_add_entity
await entity.add_to_platform_finish()
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 615, in add_to_platform_finish
self.async_write_ha_state()
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 368, in async_write_ha_state
self._async_write_ha_state()
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 402, in _async_write_ha_state
state = self._stringify_state()
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 374, in _stringify_state
state = self.state
File "/usr/src/homeassistant/homeassistant/components/climate/__init__.py", line 176, in state
return self.hvac_mode
File "/config/custom_components/tuya_v2/climate.py", line 298, in hvac_mode
return TUYA_HVAC_TO_HA[self.tuya_device.status.get(DPCODE_MODE)]
KeyError: '3' |
@ishioni LOGGER problem fixed. |
@tsutsuku Sure. It's running in cool mode when mode = 3. I played with the API and i have
|
@ishioni It seems something wrong with this product's specification. |
@ishioni Can you try again? |
@tsutsuku Updated to master - version is there now, and no more logging errors, but api still returns numerical mode values. Should i power cycle the device? {
"result": [
{
"code": "switch",
"value": true
},
{
"code": "mode",
"value": "3"
},
{
"code": "temp_set",
"value": 24
},
{
"code": "windspeed",
"value": "0"
},
{
"code": "c_f",
"value": false
},
{
"code": "temp_set_f",
"value": 55
}
],
"success": true,
"t": 1625059014381
} |
@tsutsuku Wow, it just stated returning mode = cold. But now we have yet another error! Traceback (most recent call last):
File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 383, in async_add_entities
await asyncio.gather(*tasks)
File "/usr/src/homeassistant/homeassistant/helpers/entity_platform.py", line 588, in _async_add_entity
await entity.add_to_platform_finish()
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 615, in add_to_platform_finish
self.async_write_ha_state()
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 368, in async_write_ha_state
self._async_write_ha_state()
File "/usr/src/homeassistant/homeassistant/helpers/entity.py", line 404, in _async_write_ha_state
attr.update(self.state_attributes or {})
File "/usr/src/homeassistant/homeassistant/components/climate/__init__.py", line 225, in state_attributes
self.current_temperature,
File "/config/custom_components/tuya_v2/climate.py", line 225, in current_temperature
return self.tuya_device.status.get(DPCODE_TEMP_CURRENT_F, 0) * 1.0 / (10 ** self.get_temp_current_scale())
File "/config/custom_components/tuya_v2/climate.py", line 145, in get_temp_current_scale
self.tuya_device.status_range.get(__dp_temp_current).values
AttributeError: 'NoneType' object has no attribute 'values' |
@ishioni Is there room temperature in app? |
@tsutsuku No. I've commented out lines 219-225
And it started to work, but now the temperature is still off. I can control the mode though! Looks like you're treating the temperature as fahrenheit, even though it's celsius. My device has a property c_f which tells if it's in celsius or fahrenheit, and has a separate property temp_set_f for returning the fahrenheit values |
@ishioni We treat code temp_unit_convert as Temperature unit switching. But your ac is c_f. |
@tsutsuku Server side change again? I've patched the DPCODE_TEMP_UNIT_CONVERT var to use c_f and changed the if condition in __is_celsius and it does work perfectly! Waiting for v1.5 which fixes all of this :) |
@ishioni Server side change again. |
@tsutsuku Also, while we're at it. My AC unit has a swing feature, but it's not represented in the api at all. Anything we could do about that? |
@ishioni You can replace "fan_speed_enum" with "windspeed" according to AC's Standard Instruction Set |
Yeah, that adds speed settings, but I'm talking about swing modes - DPCODE_SWITCH_VERTICAL. The device supports it, but the api doesn't report it at all |
@ishioni Your device's swing feature is not in the standard instruction set. So it can not be supported. |
AC‘s standard instruction set : https://developer.tuya.com/en/docs/iot/s?id=K9gf48r2iqa7m |
Seems to be working now after upgrading to 1.3. Thanks a lot! Swing is not working, though that is not a issue for me. I'll close this as the original issue is now fixed. |
@tsutsuku Looks like all my issues have been fixed with 1.3.1, but my AC still returns true/false for c_f. You said it would be a server-side change, so I'm pinging for that. Without it i have to adjust climate.py to work with true/false |
@tsutsuku Hi! Sorry for necroposting, but my device STILL returns true/false for c_f instead of c or f. You told me this was a server-side change, but it never occured. This blocks me from using the official intergration in home assistant as well :c |
Hey, this is a great integration, however I have a small problem with my AC unit showing incorrect temps.
Inspecting the logs, I can see that the correct temps are visible there ("temp_set": 22, "temp_current": 21):
However in the UI, instead of the correct values, it shows "-17.8":
Also, trying to adjust the temp value in the UI is not working:
The text was updated successfully, but these errors were encountered: