Ver Fonte

Fixed sendCode function

  The code was not working properly as I was telling it to use a byte
(8) but giving it a long (32).

  Also changed the digitalWrite to set the builtin led to use the global
variable already set to the builtin led.
david há 3 anos atrás
pai
commit
d4a0d1f829
1 ficheiros alterados com 8 adições e 4 exclusões
  1. 8 4
      InfraTrans/InfraTrans.ino

+ 8 - 4
InfraTrans/InfraTrans.ino

@@ -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() {