-
Notifications
You must be signed in to change notification settings - Fork 8
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
8 degree setting temp setpoint 8-13 #7
Comments
The plugin has hardcoded min temp 17 and max temp 30 as that's what my AC unit allows. I don't have 8 degree feature so I can't verify if and how it works. |
The issue is somewhat related to my question, so I'll shamefully hijack it :) I'm not getting HiPower mode (or any special mode) and uart_debug does not show any messages when I turn on/off HiPower from the remote. @pedobry My unit is RAS-18PKVSG-E/RAS-18PAVSG-E
last page I am thinking of buying one to see how it talks to the AC. |
Well, a better look at that bulletin explains it ...
Mine is older, before 9220001. |
I have unit RAS-B13PKVSG-E. The handshake is still undecoded - we just replay what the original adapter sends. I know the handshake contains unit model name and it's capabilities, but I have no means to decode it. |
The issue is settled for me :) |
The 8 degree setting indicates ok on my indoor unit with a dedicated symbol when engaged both from the esp or the ir-remote. The problem is just that the lower temp setting in degrees C dont work with the plugin for some reason. Even though i allow a lower temp with climate: Thing is ESP also reads (in debug) higher temp setting in the 8 degree-specialmode than the IR remote actually tells/sets. For exampel 13 degrees is indicated as 28 degrees |
Try loading the component locally and change these in toshiba_climate.h static const uint8_t MIN_TEMP = 17;
static const uint8_t MAX_TEMP = 30; |
Hi everyone, I have implemented the necessary code to handle the "8 degree" (frost guard) setting correctly. Unfortunately the Homeassistant interface is not updated when the temperature setpoint MIN and MAX changes due to the special mode, does anybode know how to force an update to these settings? |
When selecting special mode "8 degrees" with the IR-remote this allows a temp setting of 8-13degreesC which is not allowed as setpoint values in ESPhome. When I tried adding
climate:
visual:
min_temperature: 8
max_temperature: 27
this doesn't help as it doesn't seem allowed by the Toshiba unit. Is the 8 degree setting verified?
The text was updated successfully, but these errors were encountered: