Closed Dominik28111 closed 2 years ago
Your raw file indicates NEC protocol, could you also post the model of the remote?
Your raw file indicates NEC protocol, could you also post the model of the remote?
What do you exactly mean?
This is my normal remote:
It is nec protocol, see your own dumps.
Protocol : NEC Code : 0xF8FFC13E (32 Bits)
It is a dumb protocol, there is nothing more to support here. Each button on the remote sends one code. There is no state. Just keypresses.
@NiKiZe is correct. This is not a remote that sends an entire state. It's like a dumb TV remote. i.e. It's sending the equivalent of "Temp Up one" not "set the temp to 23C". There is nothing for us to add support for. Your message is saying "The user just press XYZ button". Normal A/C remotes send a single message that says "The mode is Cool, Fan is Auto, the vanes to High, The temp is 20C, the Power is On, the filter is Off, the Off timer is set to 240 mins".
To send your your "power button"'s message you need to use sendNEC(0xF8FFC13E, 32, 1);
or sendSherwood(0xF8FFC13E);
.
The messages are standard NEC messages with a single repeat message following it. (Per the NEC protocol, NEC has an odd repeat structure).
At the moment I am trying to add support for my Delonghi PAC EX130 ECO REAL FEE. Below you can find the current data I already collected. Sending commands is working so far but not every command works I have to send some and randomly one is working then.
Output of
python auto_analyse_raw_data.py -f ../raw.txt -g -n TestExample
:The value of
kTestExampleSpaceGap2
is working.Raw data: raw.txt