How to disable BEEP on Samsung AC? #2110
Replies: 9 comments 1 reply
-
Try: acir.setBeep(false); // Turn off the beep.
acir.off(); // Tell the AC to turn off.
acir.send(); You should only need to do |
Beta Was this translation helpful? Give feedback.
-
@crankyoldgit it does not work on my Samsung AC. reset() function does not exist. |
Beta Was this translation helpful? Give feedback.
-
Sorry. I mis-remembered it's name. it's |
Beta Was this translation helpful? Give feedback.
-
ok, I confirm that setBeep does not work on my Samsung AC even after a stateReset()... acir.stateReset(); |
Beta Was this translation helpful? Give feedback.
-
@crankyoldgit I tried but never succeded, the weird thing is that setBeep(true); works well, setBeep(false); not |
Beta Was this translation helpful? Give feedback.
-
I just looked at the code. Samsung's beep setting is a "Toggle". IRremoteESP8266/src/ir_Samsung.cpp Lines 599 to 601 in dc0fd31 When it is set, the next send will cause the A/C to swap it from |
Beta Was this translation helpful? Give feedback.
-
what do you mean for toggle? thanks. |
Beta Was this translation helpful? Give feedback.
-
// Assuming the A/C has beep already on/active.
acir.setBeep(true); // Toggle the beep setting on next send.
acir.send(); // The beep toggle command/bit will be sent.
// In theory, the beep should be turned off now.
acir.setBeep(false); // Turn off toggling the beep setting.
acir.setTemp(25);
acir.send(); // The Beep setting command/bit has been turned off, so the Beep shouldn't change on the A/C
acir.setBeep(true); // Toggle the beep setting on next send, so it should flip on the AC.
acir.send(); // The beep toggle command/bit will be sent.
// In theory, the beep should be turned on now.
acir.setTemp(26);
acir.send(); // Temp should now be 26, and the Beep toggle setting is still set, so it should flip on the AC.
// In theory, the beep should be turned off now. |
Beta Was this translation helpful? Give feedback.
-
ok now that I understood better how a toggle works it works :D |
Beta Was this translation helpful? Give feedback.
-
As title,
I'm tying this and it doesn't work.
or this:
am I doing something wrong?
thanks!
Beta Was this translation helpful? Give feedback.
All reactions