|
@@ -25,10 +25,10 @@ void setup() {
|
|
|
Serial.begin(9600); // Serial COM's Port
|
|
|
while(!Serial) { delay(10); } // Wait for conection
|
|
|
Serial.println("Serial Connected!");
|
|
|
- digitalWrite(LED_BUILTIN, LOW);
|
|
|
+ digitalWrite(led, LOW);
|
|
|
}
|
|
|
|
|
|
-void sendCode(byte code, int bit_len, bool repeat) {
|
|
|
+void sendCode(long code, int bit_len, bool repeat) {
|
|
|
// If repeat the code then repeat it 3 times
|
|
|
if(repeat) {
|
|
|
for(int x = 0; x <= 3; x++) {
|
|
@@ -50,11 +50,15 @@ void action(String act){
|
|
|
// Given String execute action
|
|
|
if(act == "tv p"){
|
|
|
sendCode(0x57E3E817, 32, true);
|
|
|
+ /*for(int x = 0; x <= 3; x++) {
|
|
|
+ sendr.sendNEC(0x57E3E817, 32);
|
|
|
+ delay(40);
|
|
|
+ }*/
|
|
|
Serial.println("tv power");
|
|
|
- } else if(act == "m p"){
|
|
|
+ }/* else if(act == "m p"){
|
|
|
sendCode(0x807F02FD, 32, false);
|
|
|
Serial.println("movie power");
|
|
|
- }
|
|
|
+ }*/
|
|
|
}
|
|
|
|
|
|
void loop() {
|