Skip to content

How to disable BEEP on Samsung AC? #2110

Closed Answered by crankyoldgit
sblantipodi asked this question in Q&A
Discussion options

You must be logged in to vote
// 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 sti…

Replies: 9 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@crankyoldgit
Comment options

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by sblantipodi
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants