Last active
May 7, 2017 16:26
-
-
Save pfingstday/491b8427c740b87d773c to your computer and use it in GitHub Desktop.
IR Codes Edifier S530D
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Serial.println("Edifier Speaker on/off"); | |
irsend.sendNEC(0xFF629D,32); | |
Serial.println("Edifier Volume Up"); | |
irsend.sendNEC(0xFF609F,32); | |
Serial.println("Edifier Volume Down"); | |
irsend.sendNEC(0xFF926D,32); | |
Serial.println("Edifier Mute"); | |
irsend.sendNEC(0xFF827D,32); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment