Dror Eiger
Dror Eiger
So it seems that (at least) the discovery requests are somewhat different. For the previous models, there was a `POST` query to a user server (replaced here by `auth-gateway.hijuconn.com`), and...
Sorry for the late reply. This is vastly different from other Hisense modules. Could you please try capturing the traffic sent to the A/C as well? If the issue is...
@evelant the same packet capture app should work also for the traffic against the A/C, but the packets would be sent to the local IP address of the A/C. Are...
OK, which AC are you using? Maybe the changed something. I assume the script is continuing as usual except for the error message? I can change the code to just...
Which app are you using? They might be using a different set of keys. I've added an option to the cli to print out all the supported properties. Try running:...
You mean t_control_value is the temperature set to the AC? Which values are you seeing there? It might be a merge of multiple factors into a single integer. The environment...
Looking at the assets, it seems that it is indeed comprised of several values: wind_speed, power_on_off, mode, fast_heat_and_code, energy_saving, temperature, throttle_up_and_down, throttle_left_and_right, silent_mode, temperature_measure. I'm not sure how exactly (yet).
f_temp_in is read only, you cannot edit it. It really should be the room temperature. What you see in t_control_value changing during the day is likely the temperature_measure part. Try...
OK, finally got it. It's all stored inside JSON configuration files in the app. These are the bits encoding each value: 0-3 t_fan_speed 5 t_power 8-10 t_work_mode 12 t_temp_heatcold 14...
It seems I had it off by one, so it should really be: ``` 1-4 t_fan_speed 6 t_power 9-11 t_work_mode 13 t_temp_heatcold 15 t_eco 17-23 t_temp 25 t_fan_power 27 t_fan_leftright...