-
Notifications
You must be signed in to change notification settings - Fork 833
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
Different Models in Daikin Remote BRC4C151 #1543
Comments
So what is the difference from the remotes sending the same data from them and picking it up with IRRecvDumpV3? (we need you to tell us the difference) setModel is the model of the device, not the unit id, please again provide the captures for the difference of only changing the dip switch. You need a unitID setting, not Model. |
@NiKiZe is correct. We need the full output of the dump program (plus your description of the settings of the remote) with every setting being the same, except only changing the A/B setting. That way it should be possible to workout what changes and what part of the message has that info. |
Power Off in Remote BRC4C151 with 'A' setting Timestamp : 000338.702 Protocol : DAIKIN176 Power Off in Remote BRC4C151 with 'B' setting Timestamp : 000343.550 Protocol : DAIKIN176 Power On in Remote BRC4C151 with 'A' setting Timestamp : 000348.150 Protocol : DAIKIN176 Power On in Remote BRC4C151 with 'B' setting Timestamp : 000353.346 Protocol : DAIKIN176 |
If I use the below sample program to send IR command, the AC unit configured with remote 'A' setting only turns on. Nothing happens to the AC unit with 'B' setting. Now my question is how to set the remote 'B' using the below code. (Currently I use the stored rawData of remote 'B' and use sendRaw method in IRSend to make it work.) #include <Arduino.h> const uint16_t kIrLed = 16; // ESP8266 GPIO pin to use. Recommended: 4 (D2). void setup() { void loop() { // Set up what we want to send. See ir_Daikin.cpp for all the options. // Display what we are going to send. // Now send the IR signal. |
0x11DA171804001E11DA17180073002000001E36002021 A The 7th & last byte is the checksum, so the first & second bold single digit number is likely the A/B unit designator. I'll code something up soon. Edit: I missed the 2nd single digit that also changes. |
That's great @crankyoldgit. Thanks for the quick response. |
* Add `IRDaikin176:setId()` & `IRDaikin176:getId()` for dealing with Unit Identifiers. * Add "Id:" to `.toString()` output. * Add unit test coverage for that, and update existing tests. * Misc code style cleanups. Fixes #1543
Please download and try out branch: https://github.com/crankyoldgit/IRremoteESP8266/tree/Issue1543 It should now give you ac.setId(1); // Create "B" setting messages.
ac.setId(0); // Create "A" setting messages. If you recompile the dump program using this branch, it should report the Let me know how it goes, but based on the data you've provided, it should work fine. |
Is A and B the only settings, or are there more? Also when you mention model, is it the model number of the actual unit/remote? Or is it what works in the library? (If we should expand on the supported models list) |
I would also like to see the same test on your Hitachi unit with only A/B changed for verification there as well. (Even if it is a different issue if it is something that we can improve on) |
Thanks @crankyoldgit . That worked perfectly! I was able to set the Id to 0 and 1 and I am now able to control each of the units separately. |
* Add `IRDaikin176:setId()` & `IRDaikin176:getId()` for dealing with Unit Identifiers. * Add "Id:" to `.toString()` output. * Add unit test coverage for that, and update existing tests. * Misc code style cleanups. Fixes #1543
Thanks @NiKiZe. I think they are just remote settings, nothing more. Both the Daikin AC units are in the same room and I want to control them via separate remotes, I set the dip switch value in each of the remote to different positions. (as seen in the above image). As you can see, there are only 2 positions that I can set the dip switch to. There is similar dip switch present in each of the indoor units as well, and I need to set them to A/B so that I can use each of the remote separately for the units. I have only one unit of Hitachi_AC and it works when I set the model to R_LT0541_HTA_A in the code and dip switch 'A' in the remote. |
@rahul121190 Thanks for confirming. The PR is now merged in to the |
If I remember correctly, we implemented it as a model on that protocol as the user needed to access it via Tasmota. So I mapped Model to ID in that particular protocol to help them out. |
Yes @crankyoldgit. I think the dip switch in Hitachi remote are for different models of the Hitachi_AC1, but for Daikin176, setting the ID 0 and 1 are merely used when we want to use different remotes for different units in the same room. |
_v2.7.20 (20210828)_ **[Bug Fixes]** - Make `strToSwingH()` match "Right Max" (#1550 #1551) **[Features]** - Experimental Bose remote support (#1579) - Added MitsubishiAC VaneLeft (#1572 #1576) - HAIER_AC176: Add experimental detailed support (#1480 #1571) - Detailed support for Tornado/Sanyo 88-bit A/C protocol (#1503 #1568) - Add support for new `TROTEC_3550` A/C protocol (#1563 #1566 #1507) - SamsungAc: Use `sendExtended()` going forward. (#1484 #1562) - SamsungAc: Redo/fix checksum calculations. (#1538 #1554) - LG: Add support for `AKB73757604` model (#1531 #1545) - Daikin176: Add support for Unit Id. (#1543 #1544) - Daikin2: Add support for Humidity setting/operation. (#1535 #1540) - TCL112AC: Add support for quiet/mute setting. (#1528 #1529) - LG2: Add Fan speed, Swing, & Light support for new `AKB74955603` model (#1513 #1530) - Add Mitsubishi AC "fan only" mode (#1527) **[Misc]** - Fix pylint issues due to pylint update. (#1569 #1570) - DAIKIN216: Update supported models. (#1552 #1567) - IRMQTTServer: Build a minimal OTA image via PlatformIO. (#1513 #1541) - Reduce memory fragmentation cause by String usage. (#1493 #1536) - Refactor `decodeMitsubishiAC()` (#1523 #1532) - Fix incorrect comment. - Migrate from Travis to GitHub Actions (#1522 #1526) - Documentation update with additional supported Panasonic AC models (#1525)
_v2.7.20 (20210828)_ **[Bug Fixes]** - Make `strToSwingH()` match "Right Max" (#1550 #1551) **[Features]** - Experimental Bose remote support (#1579) - Added MitsubishiAC VaneLeft (#1572 #1576) - HAIER_AC176: Add experimental detailed support (#1480 #1571) - Detailed support for Tornado/Sanyo 88-bit A/C protocol (#1503 #1568) - Add support for new `TROTEC_3550` A/C protocol (#1563 #1566 #1507) - SamsungAc: Use `sendExtended()` going forward. (#1484 #1562) - SamsungAc: Redo/fix checksum calculations. (#1538 #1554) - LG: Add support for `AKB73757604` model (#1531 #1545) - Daikin176: Add support for Unit Id. (#1543 #1544) - Daikin2: Add support for Humidity setting/operation. (#1535 #1540) - TCL112AC: Add support for quiet/mute setting. (#1528 #1529) - LG2: Add Fan speed, Swing, & Light support for new `AKB74955603` model (#1513 #1530) - Add Mitsubishi AC "fan only" mode (#1527) **[Misc]** - Change when some github workflows run (#1583) - Add/update supported device info (#1580 #1581 #1585) - Fix pylint issues due to pylint update. (#1569 #1570) - DAIKIN216: Update supported models. (#1552 #1567) - IRMQTTServer: Build a minimal OTA image via PlatformIO. (#1513 #1541) - Reduce memory fragmentation cause by String usage. (#1493 #1536) - Refactor `decodeMitsubishiAC()` (#1523 #1532) - Fix incorrect comment. - Migrate from Travis to GitHub Actions (#1522 #1526) - Documentation update with additional supported Panasonic AC models (#1525)
## _v2.7.20 (20210828)_ **[Bug Fixes]** - Make `strToSwingH()` match "Right Max" (#1550 #1551) **[Features]** - Experimental Bose remote support (#1579) - Added MitsubishiAC VaneLeft (#1572 #1576) - HAIER_AC176: Add experimental detailed support (#1480 #1571) - Detailed support for Tornado/Sanyo 88-bit A/C protocol (#1503 #1568) - Add support for new `TROTEC_3550` A/C protocol (#1563 #1566 #1507) - SamsungAc: Use `sendExtended()` going forward. (#1484 #1562) - SamsungAc: Redo/fix checksum calculations. (#1538 #1554) - LG: Add support for `AKB73757604` model (#1531 #1545) - Daikin176: Add support for Unit Id. (#1543 #1544) - Daikin2: Add support for Humidity setting/operation. (#1535 #1540) - TCL112AC: Add support for quiet/mute setting. (#1528 #1529) - LG2: Add Fan speed, Swing, & Light support for new `AKB74955603` model (#1513 #1530) - Add Mitsubishi AC "fan only" mode (#1527) **[Misc]** - Change when some github workflows run (#1583) - Add/update supported device info (#1580 #1581 #1585) - Fix pylint issues due to pylint update. (#1569 #1570) - DAIKIN216: Update supported models. (#1552 #1567) - IRMQTTServer: Build a minimal OTA image via PlatformIO. (#1513 #1541) - Reduce memory fragmentation cause by String usage. (#1493 #1536) - Refactor `decodeMitsubishiAC()` (#1523 #1532) - Fix incorrect comment. - Migrate from Travis to GitHub Actions (#1522 #1526) - Documentation update with additional supported Panasonic AC models (#1525)
FYI, the changes mentioned above have been included in the just released v2.7.20 of the library. |
Thanks to @crankyoldgit and @NiKiZe for all the help. |
Hi @crankyoldgit,
I have 2 units of Daikin AC in my bedroom controlled by different remotes. Both uses the same model (BRC4C151), but I have set the dip switch values to A and B respectively in each of the remotes. The same setting is done at the individual indoor units to map the remote to the respective units. The model BRC4C151 corresponds to DAIKIN176 when I test both the remotes using IRRecvDumpV3, however using the IRDaikin library to send the IR signal works only for one of the units (Remote set to model A). And the other unit (set to Model B) does not respond to the send method.
I have currently stored the raw value for the On/Off for the second remote and using the sendRaw method in IRSend to make it work.
I use Hitachi in my living room and recently saw the setModel method in IRHitachi for HITACHI_AC1 model. And I was able to set the value R_LT0541_HTA_A/R_LT0541_HTA_B and it corresponds to A/B dip switch in the Hitachi Remote. However I could not find setModel method in IRDaikin for DAIKIN176.
Is there any way I can make the Model B Daikin remote to work without setting the dip switch to A (since I want to control each of these units separately)?
Thanks in Advance
The text was updated successfully, but these errors were encountered: