-
Notifications
You must be signed in to change notification settings - Fork 839
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
Adding Panasonic Ceiling Light Remote Data to IRremoteESP8266 Library #1976
Comments
Can I ask that you collect more samples, can't promise when we get time to implement this. But data is good to have to verify. |
I have collected data for all the buttons on my remote control. Please let me know if there is anything else I can help with. Thank you very much.
|
This seems to be a shorter version of the normal 48 bit protocol. Different manufacturer code, and slightly different checksum calc. Modified the exist code to support it rather than add a new protocol. Fixes #1976
@bennyyagiyama Can you please download & try branch Panasonic40 (https://github.com/crankyoldgit/IRremoteESP8266/tree/Panasonic40) & PR #1977 // send a 'night ch3' message.
irsend.sendPanasonic64(0x344A907CEC, kPanasonic40Bits); // kPanasonic40Bits is 40. Can you let me know how you go with that branch/code? |
I apologize for the delayed response. Your prompt and thorough response has been an immense help to me. I am deeply grateful for your expertise and willingness to assist. Using the Panasonic40 branch, I obtained the following result for the Ch1 FULL button: Protocol : PANASONIC Only the code is listed below.
(Warm button and cold button were not available on my IR remote.) Also, I confirmed that the received code could be sent using the following code:
Thank you very much. I am so grateful for your time and effort in helping me. |
Thanks for confirming it. It's now merged. |
Add Panasonic Ceiling Light remote data
Description
I would like to request that the Panasonic Ceiling Light remote data be added to the IRremoteESP8266 library. When the "off - Channel3" button is pressed on the remote, the following data is obtained using IRrecvDumpV2:
uint16_t rawData[83] = {3486, 1742, 432, 456, 406, 456, 406, 1336, 406, 1312, 430, 456, 406, 1334, 408, 456, 406, 456, 408, 456, 406, 1334, 408, 456, 408, 454, 408, 1334, 408, 456, 406, 1336, 406, 456, 408, 1334, 408, 456, 406, 456, 408, 1336, 406, 456, 408, 454, 406, 456, 406, 454, 408, 1332, 410, 1332, 408, 1334, 408, 1336, 406, 1334, 410, 1332, 410, 454, 406, 456, 406, 456, 406, 1332, 410, 1334, 408, 454, 406, 1336, 406, 1336, 406, 454, 410, 454, 408}; // UNKNOWN 1D41D404
According to this link, the data format is as follows:
The remote has the following commands and corresponding channel values:
Additional Information
I have confirmed that the data corresponds to the "off" command of channel3 for the Panasonic Ceiling Light. Please let me know if any further information is needed.
Thank you for your attention and I hope this data can be added to the library.
The text was updated successfully, but these errors were encountered: