-
Notifications
You must be signed in to change notification settings - Fork 836
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
TECO protocol Light on/off #870
Comments
There is also other thing, I have on remote 4 buttons without text, seems they do not anything with my A/C but they show icons on remote and change data:
/Tomi |
That light cmd I already fixed but of course you can do that better. ir_Teco.h:
ir_Teco.cpp:
/Tomi |
Can you please provide the part/model numbers for the A/C remote and the A/C's head unit so I can add it to the supported device list? I'll work on your suggested changes shortly. |
I've added the above. My guess is the "tree" thing is either a Fresh Air mode or a Filter (for pollen?). Any chance you've got a manual? or know what the features of the A/C are/were? |
I've tried to update what I can based on your info. Can you please try out the code in PR #871 (https://github.com/crankyoldgit/IRremoteESP8266/tree/alaska) and let me know how it goes for you? |
Hi, Anyway, thanks for your work :) |
Code is working, at least that Light option is ok. Rest I cannot judge, my A/C doesn't support that commands, they are only on remote (and they have missing text/description on remote) and manual also not mention that unmarked buttons and symbols on remote, I think this remote was used also for other A/C units from Alaska where was that functions supported. /Tomi |
Thanks for confirming. |
* Add light, humid, & save support. * Add model info & improve unit tests. For #870
As you can't confirm the rest of the functionality, and as that PR is now merged into the |
FYI: The changes mentioned above have been included in v2.6.5 of the library which has just been released. |
Hi,
I have ALASKA A/C and this use TECO protocol, I have tested that and seems most basic commands works perfect except - A/C start with turned off display and I not found command to turn on/off display in lib.
I have used IRrecvDumpv2 to check and seems LIGHT button is in third (byte 2) byte:
Example cmd:
Light on: 0x250200A09
Light off: 0x250000A09
Then it is in byte 2, and b5 which seems in lib its wrong because TECO lib have for byte 2 this:
b0-3 = 0b0000
b4-7 = Timer hours (unit, not thenth)
I tested that Timer hours too, 0-9hours is in b0-3 in range 0000-1001 (max up to 9h), b5 = light on/off, in hex byte 2 counts: 0x0-9 (light off) or 0x20-29 (light on).
Just FYI
/Tomi
The text was updated successfully, but these errors were encountered: