Ver Fonte

Added Arduino Sorcecode files

david há 3 anos atrás
pai
commit
bcd01f9968
3 ficheiros alterados com 121 adições e 1 exclusões
  1. 43 0
      IRProtocolDetector.ino
  2. 77 0
      InfraTrans.ino
  3. 1 1
      remotes.py

+ 43 - 0
IRProtocolDetector.ino

@@ -0,0 +1,43 @@
+#include <IRremote.h>
+
+const int RECV_PIN = 7;
+IRrecv irrecv(RECV_PIN);
+decode_results results;
+
+void setup()
+{
+  Serial.begin(9600);
+  irrecv.enableIRIn(); // Start the receiver
+  irrecv.blink13(true); // Blink when IR signal received?
+  while(!Serial) {;} // Wait for Serial Connection...
+  Serial.println("Connected!");
+}
+
+void loop() {
+  if (irrecv.decode(&results)) {
+    switch (results.decode_type){
+      case NEC: Serial.print("NEC: "); break ;
+      case SONY: Serial.print("SONY: "); break ;
+      case RC5: Serial.print("RC5: "); break ;
+      case RC6: Serial.print("RC6: "); break ;
+      case DISH: Serial.print("DISH: "); break ;
+      case SHARP: Serial.print("SHARP: "); break ;
+      case JVC: Serial.print("JVC: "); break ;
+      case SANYO: Serial.print("SANYO: "); break ;
+      case MITSUBISHI: Serial.print("MITSUBISHI: "); break ;
+      case SAMSUNG: Serial.print("SAMSUNG: "); break ;
+      case LG: Serial.print("LG: "); break ;
+      case WHYNTER: Serial.print("WHYNTER: "); break ;
+      case AIWA_RC_T501: Serial.print("AIWA_RC_T501: "); break ;
+      case PANASONIC: Serial.print("PANASONIC: "); break ;
+      case DENON: Serial.print("DENON: "); break ;
+    default:
+      case UNKNOWN: Serial.print("UNKNOWN: "); break ;
+    }
+    Serial.print(results.value, HEX);
+    // Added # of bits in decode type
+    Serial.print(" ");
+    Serial.println(results.bits);
+    irrecv.resume(); // Receive the next value
+  }
+}

+ 77 - 0
InfraTrans.ino

@@ -0,0 +1,77 @@
+#include <IRremote.h>
+
+const int led = LED_BUILTIN; // On board LED, Pin 13
+const int RECV_PIN = 7; // IR Receiver
+String input = "";
+bool done = false;
+IRsend sendr; // Make Send Object, DANGER a fixed pin number is always used! (3)
+//IRrecv recvr(RECV_PIN); // Make Recever Object
+decode_results results; // Make Results Object to store received codes
+
+void setup() {
+  // Initalize on board LED
+  pinMode(led, OUTPUT);
+  digitalWrite(led, LOW);
+  
+  // Initalize input routine
+  input.reserve(60); // Max input of chars, to merge into string
+  done = false;
+
+  // Initalize IR connections
+  //recvr.enableIRIn();
+  //recvr.blink13(false); // Disabled Pin 13 blinking on IR signal received
+  
+  // Initalize Output routine
+  Serial.begin(9600); // Serial COM's Port
+  while(!Serial) { delay(10); } // Wait for conection
+  Serial.println("Serial Connected!");
+  digitalWrite(LED_BUILTIN, LOW);
+}
+
+void sendCode(byte code, int bit_len, bool repeat) {
+  // If repeat the code then repeat it 3 times
+  if(repeat) {
+    for(int x = 0; x <= 3; x++) {
+      sendr.sendNEC(code, bit_len);
+      delay(40);
+    }
+  } else {
+    // Else send the code then repeat a blank 2 times
+    sendr.sendNEC(code, bit_len);
+    delay(40);
+    for(int x = 0; x <= 2; x++) {
+      sendr.sendNEC(0xFFFFFFFF, 32);
+      delay(40);
+    }
+  }
+}
+
+void action(String act){
+  // Given String execute action
+  if(act == "tv p"){
+    sendCode(0x57E3E817, 32, true);
+    Serial.println("tv power");
+  } else if(act == "m p"){
+    sendCode(0x807F02FD, 32, false);
+    Serial.println("movie power");
+  }
+}
+
+void loop() {
+  // Are we sending/receiving data?
+  if(Serial.available() > 0) {
+    char in = (char)Serial.read();
+    if (in == '\n') {
+      done = true;
+    } else if (in == '\n') {
+      done = true;
+    } else {
+      input += in;
+    }
+  }
+  if(done){
+    action(input); // Execute command / handle command
+    input = "";
+    done = false;
+  }
+}

+ 1 - 1
remotes.py

@@ -30,7 +30,7 @@ movie_box = {
         "type": "NEC",
         "size": 32,
         "repeat": 2,
-        "repeat_with": "FFFFFFFFF"
+        "repeat_with": "FFFFFFFF"
     },
     "power": "807F02FD",
     "tv-power": "807F8F70",