IRRemote fuer Yamaha Reciever
authorBernhard Tittelbach <xro@realraum.at>
Mon, 26 Jul 2010 19:32:49 +0000 (19:32 +0000)
committerBernhard Tittelbach <xro@realraum.at>
Mon, 26 Jul 2010 19:32:49 +0000 (19:32 +0000)
13 files changed:
rf433ctl/IRremote/IRremote.cpp [new file with mode: 0644]
rf433ctl/IRremote/IRremote.h [new file with mode: 0644]
rf433ctl/IRremote/IRremoteInt.h [new file with mode: 0644]
rf433ctl/IRremote/LICENSE.txt [new file with mode: 0644]
rf433ctl/IRremote/examples/IRrecord/IRrecord.pde [new file with mode: 0644]
rf433ctl/IRremote/examples/IRrecvDemo/IRrecvDemo.pde [new file with mode: 0644]
rf433ctl/IRremote/examples/IRrecvDump/IRrecvDump.pde [new file with mode: 0644]
rf433ctl/IRremote/examples/IRrelay/IRrelay.pde [new file with mode: 0644]
rf433ctl/IRremote/examples/IRsendDemo/IRsendDemo.pde [new file with mode: 0644]
rf433ctl/IRremote/examples/IRtest/IRtest.pde [new file with mode: 0644]
rf433ctl/IRremote/keywords.txt [new file with mode: 0644]
rf433ctl/Makefile
rf433ctl/rf433ctl.pde

diff --git a/rf433ctl/IRremote/IRremote.cpp b/rf433ctl/IRremote/IRremote.cpp
new file mode 100644 (file)
index 0000000..bb6083e
--- /dev/null
@@ -0,0 +1,601 @@
+/*\r
+ * IRremote\r
+ * Version 0.11 August, 2009\r
+ * Copyright 2009 Ken Shirriff\r
+ * For details, see http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.html\r
+ *\r
+ * Interrupt code based on NECIRrcv by Joe Knapp\r
+ * http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1210243556\r
+ * Also influenced by http://zovirl.com/2008/11/12/building-a-universal-remote-with-an-arduino/\r
+ */\r
+\r
+#include "IRremote.h"\r
+#include "IRremoteInt.h"\r
+\r
+// Provides ISR\r
+#include <avr/interrupt.h>\r
+\r
+volatile irparams_t irparams;\r
+\r
+// These versions of MATCH, MATCH_MARK, and MATCH_SPACE are only for debugging.\r
+// To use them, set DEBUG in IRremoteInt.h\r
+// Normally macros are used for efficiency\r
+#ifdef DEBUG\r
+int MATCH(int measured, int desired) {\r
+  Serial.print("Testing: ");\r
+  Serial.print(TICKS_LOW(desired), DEC);\r
+  Serial.print(" <= ");\r
+  Serial.print(measured, DEC);\r
+  Serial.print(" <= ");\r
+  Serial.println(TICKS_HIGH(desired), DEC);\r
+  return measured >= TICKS_LOW(desired) && measured <= TICKS_HIGH(desired);\r
+}\r
+\r
+int MATCH_MARK(int measured_ticks, int desired_us) {\r
+  Serial.print("Testing mark ");\r
+  Serial.print(measured_ticks * USECPERTICK, DEC);\r
+  Serial.print(" vs ");\r
+  Serial.print(desired_us, DEC);\r
+  Serial.print(": ");\r
+  Serial.print(TICKS_LOW(desired_us + MARK_EXCESS), DEC);\r
+  Serial.print(" <= ");\r
+  Serial.print(measured_ticks, DEC);\r
+  Serial.print(" <= ");\r
+  Serial.println(TICKS_HIGH(desired_us + MARK_EXCESS), DEC);\r
+  return measured_ticks >= TICKS_LOW(desired_us + MARK_EXCESS) && measured_ticks <= TICKS_HIGH(desired_us + MARK_EXCESS);\r
+}\r
+\r
+int MATCH_SPACE(int measured_ticks, int desired_us) {\r
+  Serial.print("Testing space ");\r
+  Serial.print(measured_ticks * USECPERTICK, DEC);\r
+  Serial.print(" vs ");\r
+  Serial.print(desired_us, DEC);\r
+  Serial.print(": ");\r
+  Serial.print(TICKS_LOW(desired_us - MARK_EXCESS), DEC);\r
+  Serial.print(" <= ");\r
+  Serial.print(measured_ticks, DEC);\r
+  Serial.print(" <= ");\r
+  Serial.println(TICKS_HIGH(desired_us - MARK_EXCESS), DEC);\r
+  return measured_ticks >= TICKS_LOW(desired_us - MARK_EXCESS) && measured_ticks <= TICKS_HIGH(desired_us - MARK_EXCESS);\r
+}\r
+#endif\r
+\r
+void IRsend::sendNEC(unsigned long data, int nbits)\r
+{\r
+  enableIROut(38);\r
+  mark(NEC_HDR_MARK);\r
+  space(NEC_HDR_SPACE);\r
+  for (int i = 0; i < nbits; i++) {\r
+    if (data & TOPBIT) {\r
+      mark(NEC_BIT_MARK);\r
+      space(NEC_ONE_SPACE);\r
+    } \r
+    else {\r
+      mark(NEC_BIT_MARK);\r
+      space(NEC_ZERO_SPACE);\r
+    }\r
+    data <<= 1;\r
+  }\r
+  mark(NEC_BIT_MARK);\r
+  space(0);\r
+}\r
+\r
+void IRsend::sendSony(unsigned long data, int nbits) {\r
+  enableIROut(40);\r
+  mark(SONY_HDR_MARK);\r
+  space(SONY_HDR_SPACE);\r
+  data = data << (32 - nbits);\r
+  for (int i = 0; i < nbits; i++) {\r
+    if (data & TOPBIT) {\r
+      mark(SONY_ONE_MARK);\r
+      space(SONY_HDR_SPACE);\r
+    } \r
+    else {\r
+      mark(SONY_ZERO_MARK);\r
+      space(SONY_HDR_SPACE);\r
+    }\r
+    data <<= 1;\r
+  }\r
+}\r
+\r
+void IRsend::sendRaw(unsigned int buf[], int len, int hz)\r
+{\r
+  enableIROut(hz);\r
+  for (int i = 0; i < len; i++) {\r
+    if (i & 1) {\r
+      space(buf[i]);\r
+    } \r
+    else {\r
+      mark(buf[i]);\r
+    }\r
+  }\r
+  space(0); // Just to be sure\r
+}\r
+\r
+// Note: first bit must be a one (start bit)\r
+void IRsend::sendRC5(unsigned long data, int nbits)\r
+{\r
+  enableIROut(36);\r
+  data = data << (32 - nbits);\r
+  mark(RC5_T1); // First start bit\r
+  space(RC5_T1); // Second start bit\r
+  mark(RC5_T1); // Second start bit\r
+  for (int i = 0; i < nbits; i++) {\r
+    if (data & TOPBIT) {\r
+      space(RC5_T1); // 1 is space, then mark\r
+      mark(RC5_T1);\r
+    } \r
+    else {\r
+      mark(RC5_T1);\r
+      space(RC5_T1);\r
+    }\r
+    data <<= 1;\r
+  }\r
+  space(0); // Turn off at end\r
+}\r
+\r
+// Caller needs to take care of flipping the toggle bit\r
+void IRsend::sendRC6(unsigned long data, int nbits)\r
+{\r
+  enableIROut(36);\r
+  data = data << (32 - nbits);\r
+  mark(RC6_HDR_MARK);\r
+  space(RC6_HDR_SPACE);\r
+  mark(RC6_T1); // start bit\r
+  space(RC6_T1);\r
+  int t;\r
+  for (int i = 0; i < nbits; i++) {\r
+    if (i == 3) {\r
+      // double-wide trailer bit\r
+      t = 2 * RC6_T1;\r
+    } \r
+    else {\r
+      t = RC6_T1;\r
+    }\r
+    if (data & TOPBIT) {\r
+      mark(t);\r
+      space(t);\r
+    } \r
+    else {\r
+      space(t);\r
+      mark(t);\r
+    }\r
+\r
+    data <<= 1;\r
+  }\r
+  space(0); // Turn off at end\r
+}\r
+\r
+void IRsend::mark(int time) {\r
+  // Sends an IR mark for the specified number of microseconds.\r
+  // The mark output is modulated at the PWM frequency.\r
+  TCCR2A |= _BV(COM2B1); // Enable pin 3 PWM output\r
+  delayMicroseconds(time);\r
+}\r
+\r
+/* Leave pin off for time (given in microseconds) */\r
+void IRsend::space(int time) {\r
+  // Sends an IR space for the specified number of microseconds.\r
+  // A space is no output, so the PWM output is disabled.\r
+  TCCR2A &= ~(_BV(COM2B1)); // Disable pin 3 PWM output\r
+  delayMicroseconds(time);\r
+}\r
+\r
+void IRsend::enableIROut(int khz) {\r
+  // Enables IR output.  The khz value controls the modulation frequency in kilohertz.\r
+  // The IR output will be on pin 3 (OC2B).\r
+  // This routine is designed for 36-40KHz; if you use it for other values, it's up to you\r
+  // to make sure it gives reasonable results.  (Watch out for overflow / underflow / rounding.)\r
+  // TIMER2 is used in phase-correct PWM mode, with OCR2A controlling the frequency and OCR2B\r
+  // controlling the duty cycle.\r
+  // There is no prescaling, so the output frequency is 16MHz / (2 * OCR2A)\r
+  // To turn the output on and off, we leave the PWM running, but connect and disconnect the output pin.\r
+  // A few hours staring at the ATmega documentation and this will all make sense.\r
+  // See my Secrets of Arduino PWM at http://arcfn.com/2009/07/secrets-of-arduino-pwm.html for details.\r
+\r
+  \r
+  // Disable the Timer2 Interrupt (which is used for receiving IR)\r
+  TIMSK2 &= ~_BV(TOIE2); //Timer2 Overflow Interrupt\r
+  \r
+  pinMode(3, OUTPUT);\r
+  digitalWrite(3, LOW); // When not sending PWM, we want it low\r
+  \r
+  // COM2A = 00: disconnect OC2A\r
+  // COM2B = 00: disconnect OC2B; to send signal set to 10: OC2B non-inverted\r
+  // WGM2 = 101: phase-correct PWM with OCRA as top\r
+  // CS2 = 000: no prescaling\r
+  TCCR2A = _BV(WGM20);\r
+  TCCR2B = _BV(WGM22) | _BV(CS20);\r
+\r
+  // The top value for the timer.  The modulation frequency will be SYSCLOCK / 2 / OCR2A.\r
+  OCR2A = SYSCLOCK / 2 / khz / 1000;\r
+  OCR2B = OCR2A / 3; // 33% duty cycle\r
+}\r
+\r
+IRrecv::IRrecv(int recvpin)\r
+{\r
+  irparams.recvpin = recvpin;\r
+  irparams.blinkflag = 0;\r
+}\r
+\r
+// initialization\r
+void IRrecv::enableIRIn() {\r
+  // setup pulse clock timer interrupt\r
+  TCCR2A = 0;  // normal mode\r
+\r
+  //Prescale /8 (16M/8 = 0.5 microseconds per tick)\r
+  // Therefore, the timer interval can range from 0.5 to 128 microseconds\r
+  // depending on the reset value (255 to 0)\r
+  cbi(TCCR2B,CS22);\r
+  sbi(TCCR2B,CS21);\r
+  cbi(TCCR2B,CS20);\r
+\r
+  //Timer2 Overflow Interrupt Enable\r
+  sbi(TIMSK2,TOIE2);\r
+\r
+  RESET_TIMER2;\r
+\r
+  sei();  // enable interrupts\r
+\r
+  // initialize state machine variables\r
+  irparams.rcvstate = STATE_IDLE;\r
+  irparams.rawlen = 0;\r
+\r
+\r
+  // set pin modes\r
+  pinMode(irparams.recvpin, INPUT);\r
+}\r
+\r
+// enable/disable blinking of pin 13 on IR processing\r
+void IRrecv::blink13(int blinkflag)\r
+{\r
+  irparams.blinkflag = blinkflag;\r
+  if (blinkflag)\r
+    pinMode(BLINKLED, OUTPUT);\r
+}\r
+\r
+// TIMER2 interrupt code to collect raw data.\r
+// Widths of alternating SPACE, MARK are recorded in rawbuf.\r
+// Recorded in ticks of 50 microseconds.\r
+// rawlen counts the number of entries recorded so far.\r
+// First entry is the SPACE between transmissions.\r
+// As soon as a SPACE gets long, ready is set, state switches to IDLE, timing of SPACE continues.\r
+// As soon as first MARK arrives, gap width is recorded, ready is cleared, and new logging starts\r
+ISR(TIMER2_OVF_vect)\r
+{\r
+  RESET_TIMER2;\r
+\r
+  uint8_t irdata = (uint8_t)digitalRead(irparams.recvpin);\r
+\r
+  irparams.timer++; // One more 50us tick\r
+  if (irparams.rawlen >= RAWBUF) {\r
+    // Buffer overflow\r
+    irparams.rcvstate = STATE_STOP;\r
+  }\r
+  switch(irparams.rcvstate) {\r
+  case STATE_IDLE: // In the middle of a gap\r
+    if (irdata == MARK) {\r
+      if (irparams.timer < GAP_TICKS) {\r
+        // Not big enough to be a gap.\r
+        irparams.timer = 0;\r
+      } \r
+      else {\r
+        // gap just ended, record duration and start recording transmission\r
+        irparams.rawlen = 0;\r
+        irparams.rawbuf[irparams.rawlen++] = irparams.timer;\r
+        irparams.timer = 0;\r
+        irparams.rcvstate = STATE_MARK;\r
+      }\r
+    }\r
+    break;\r
+  case STATE_MARK: // timing MARK\r
+    if (irdata == SPACE) {   // MARK ended, record time\r
+      irparams.rawbuf[irparams.rawlen++] = irparams.timer;\r
+      irparams.timer = 0;\r
+      irparams.rcvstate = STATE_SPACE;\r
+    }\r
+    break;\r
+  case STATE_SPACE: // timing SPACE\r
+    if (irdata == MARK) { // SPACE just ended, record it\r
+      irparams.rawbuf[irparams.rawlen++] = irparams.timer;\r
+      irparams.timer = 0;\r
+      irparams.rcvstate = STATE_MARK;\r
+    } \r
+    else { // SPACE\r
+      if (irparams.timer > GAP_TICKS) {\r
+        // big SPACE, indicates gap between codes\r
+        // Mark current code as ready for processing\r
+        // Switch to STOP\r
+        // Don't reset timer; keep counting space width\r
+        irparams.rcvstate = STATE_STOP;\r
+      } \r
+    }\r
+    break;\r
+  case STATE_STOP: // waiting, measuring gap\r
+    if (irdata == MARK) { // reset gap timer\r
+      irparams.timer = 0;\r
+    }\r
+    break;\r
+  }\r
+\r
+  if (irparams.blinkflag) {\r
+    if (irdata == MARK) {\r
+      PORTB |= B00100000;  // turn pin 13 LED on\r
+    } \r
+    else {\r
+      PORTB &= B11011111;  // turn pin 13 LED off\r
+    }\r
+  }\r
+}\r
+\r
+void IRrecv::resume() {\r
+  irparams.rcvstate = STATE_IDLE;\r
+  irparams.rawlen = 0;\r
+}\r
+\r
+\r
+\r
+// Decodes the received IR message\r
+// Returns 0 if no data ready, 1 if data ready.\r
+// Results of decoding are stored in results\r
+int IRrecv::decode(decode_results *results) {\r
+  results->rawbuf = irparams.rawbuf;\r
+  results->rawlen = irparams.rawlen;\r
+  if (irparams.rcvstate != STATE_STOP) {\r
+    return ERR;\r
+  }\r
+#ifdef DEBUG\r
+  Serial.println("Attempting NEC decode");\r
+#endif\r
+  if (decodeNEC(results)) {\r
+    return DECODED;\r
+  }\r
+#ifdef DEBUG\r
+  Serial.println("Attempting Sony decode");\r
+#endif\r
+  if (decodeSony(results)) {\r
+    return DECODED;\r
+  }\r
+#ifdef DEBUG\r
+  Serial.println("Attempting RC5 decode");\r
+#endif  \r
+  if (decodeRC5(results)) {\r
+    return DECODED;\r
+  }\r
+#ifdef DEBUG\r
+  Serial.println("Attempting RC6 decode");\r
+#endif \r
+  if (decodeRC6(results)) {\r
+    return DECODED;\r
+  }\r
+  if (results->rawlen >= 6) {\r
+    // Only return raw buffer if at least 6 bits\r
+    results->decode_type = UNKNOWN;\r
+    results->bits = 0;\r
+    results->value = 0;\r
+    return DECODED;\r
+  }\r
+  // Throw away and start over\r
+  resume();\r
+  return ERR;\r
+}\r
+\r
+long IRrecv::decodeNEC(decode_results *results) {\r
+  long data = 0;\r
+  int offset = 1; // Skip first space\r
+  // Initial mark\r
+  if (!MATCH_MARK(results->rawbuf[offset], NEC_HDR_MARK)) {\r
+    return ERR;\r
+  }\r
+  offset++;\r
+  // Check for repeat\r
+  if (irparams.rawlen == 4 &&\r
+    MATCH_SPACE(results->rawbuf[offset], NEC_RPT_SPACE) &&\r
+    MATCH_MARK(results->rawbuf[offset+1], NEC_BIT_MARK)) {\r
+    results->bits = 0;\r
+    results->value = REPEAT;\r
+    results->decode_type = NEC;\r
+    return DECODED;\r
+  }\r
+  if (irparams.rawlen < 2 * NEC_BITS + 4) {\r
+    return ERR;\r
+  }\r
+  // Initial space  \r
+  if (!MATCH_SPACE(results->rawbuf[offset], NEC_HDR_SPACE)) {\r
+    return ERR;\r
+  }\r
+  offset++;\r
+  for (int i = 0; i < NEC_BITS; i++) {\r
+    if (!MATCH_MARK(results->rawbuf[offset], NEC_BIT_MARK)) {\r
+      return ERR;\r
+    }\r
+    offset++;\r
+    if (MATCH_SPACE(results->rawbuf[offset], NEC_ONE_SPACE)) {\r
+      data = (data << 1) | 1;\r
+    } \r
+    else if (MATCH_SPACE(results->rawbuf[offset], NEC_ZERO_SPACE)) {\r
+      data <<= 1;\r
+    } \r
+    else {\r
+      return ERR;\r
+    }\r
+    offset++;\r
+  }\r
+  // Success\r
+  results->bits = NEC_BITS;\r
+  results->value = data;\r
+  results->decode_type = NEC;\r
+  return DECODED;\r
+}\r
+\r
+long IRrecv::decodeSony(decode_results *results) {\r
+  long data = 0;\r
+  if (irparams.rawlen < 2 * SONY_BITS + 2) {\r
+    return ERR;\r
+  }\r
+  int offset = 1; // Skip first space\r
+  // Initial mark\r
+  if (!MATCH_MARK(results->rawbuf[offset], SONY_HDR_MARK)) {\r
+    return ERR;\r
+  }\r
+  offset++;\r
+\r
+  while (offset + 1 < irparams.rawlen) {\r
+    if (!MATCH_SPACE(results->rawbuf[offset], SONY_HDR_SPACE)) {\r
+      break;\r
+    }\r
+    offset++;\r
+    if (MATCH_MARK(results->rawbuf[offset], SONY_ONE_MARK)) {\r
+      data = (data << 1) | 1;\r
+    } \r
+    else if (MATCH_MARK(results->rawbuf[offset], SONY_ZERO_MARK)) {\r
+      data <<= 1;\r
+    } \r
+    else {\r
+      return ERR;\r
+    }\r
+    offset++;\r
+  }\r
+\r
+  // Success\r
+  results->bits = (offset - 1) / 2;\r
+  if (results->bits < 12) {\r
+    results->bits = 0;\r
+    return ERR;\r
+  }\r
+  results->value = data;\r
+  results->decode_type = SONY;\r
+  return DECODED;\r
+}\r
+\r
+// Gets one undecoded level at a time from the raw buffer.\r
+// The RC5/6 decoding is easier if the data is broken into time intervals.\r
+// E.g. if the buffer has MARK for 2 time intervals and SPACE for 1,\r
+// successive calls to getRClevel will return MARK, MARK, SPACE.\r
+// offset and used are updated to keep track of the current position.\r
+// t1 is the time interval for a single bit in microseconds.\r
+// Returns -1 for error (measured time interval is not a multiple of t1).\r
+int IRrecv::getRClevel(decode_results *results, int *offset, int *used, int t1) {\r
+  if (*offset >= results->rawlen) {\r
+    // After end of recorded buffer, assume SPACE.\r
+    return SPACE;\r
+  }\r
+  int width = results->rawbuf[*offset];\r
+  int val = ((*offset) % 2) ? MARK : SPACE;\r
+  int correction = (val == MARK) ? MARK_EXCESS : - MARK_EXCESS;\r
+\r
+  int avail;\r
+  if (MATCH(width, t1 + correction)) {\r
+    avail = 1;\r
+  } \r
+  else if (MATCH(width, 2*t1 + correction)) {\r
+    avail = 2;\r
+  } \r
+  else if (MATCH(width, 3*t1 + correction)) {\r
+    avail = 3;\r
+  } \r
+  else {\r
+    return -1;\r
+  }\r
+\r
+  (*used)++;\r
+  if (*used >= avail) {\r
+    *used = 0;\r
+    (*offset)++;\r
+  }\r
+#ifdef DEBUG\r
+  if (val == MARK) {\r
+    Serial.println("MARK");\r
+  } \r
+  else {\r
+    Serial.println("SPACE");\r
+  }\r
+#endif\r
+  return val;   \r
+}\r
+\r
+long IRrecv::decodeRC5(decode_results *results) {\r
+  if (irparams.rawlen < MIN_RC5_SAMPLES + 2) {\r
+    return ERR;\r
+  }\r
+  int offset = 1; // Skip gap space\r
+  long data = 0;\r
+  int used = 0;\r
+  // Get start bits\r
+  if (getRClevel(results, &offset, &used, RC5_T1) != MARK) return ERR;\r
+  if (getRClevel(results, &offset, &used, RC5_T1) != SPACE) return ERR;\r
+  if (getRClevel(results, &offset, &used, RC5_T1) != MARK) return ERR;\r
+  int nbits;\r
+  for (nbits = 0; offset < irparams.rawlen; nbits++) {\r
+    int levelA = getRClevel(results, &offset, &used, RC5_T1); \r
+    int levelB = getRClevel(results, &offset, &used, RC5_T1);\r
+    if (levelA == SPACE && levelB == MARK) {\r
+      // 1 bit\r
+      data = (data << 1) | 1;\r
+    } \r
+    else if (levelA == MARK && levelB == SPACE) {\r
+      // zero bit\r
+      data <<= 1;\r
+    } \r
+    else {\r
+      return ERR;\r
+    } \r
+  }\r
+\r
+  // Success\r
+  results->bits = nbits;\r
+  results->value = data;\r
+  results->decode_type = RC5;\r
+  return DECODED;\r
+}\r
+\r
+long IRrecv::decodeRC6(decode_results *results) {\r
+  if (results->rawlen < MIN_RC6_SAMPLES) {\r
+    return ERR;\r
+  }\r
+  int offset = 1; // Skip first space\r
+  // Initial mark\r
+  if (!MATCH_MARK(results->rawbuf[offset], RC6_HDR_MARK)) {\r
+    return ERR;\r
+  }\r
+  offset++;\r
+  if (!MATCH_SPACE(results->rawbuf[offset], RC6_HDR_SPACE)) {\r
+    return ERR;\r
+  }\r
+  offset++;\r
+  long data = 0;\r
+  int used = 0;\r
+  // Get start bit (1)\r
+  if (getRClevel(results, &offset, &used, RC6_T1) != MARK) return ERR;\r
+  if (getRClevel(results, &offset, &used, RC6_T1) != SPACE) return ERR;\r
+  int nbits;\r
+  for (nbits = 0; offset < results->rawlen; nbits++) {\r
+    int levelA, levelB; // Next two levels\r
+    levelA = getRClevel(results, &offset, &used, RC6_T1); \r
+    if (nbits == 3) {\r
+      // T bit is double wide; make sure second half matches\r
+      if (levelA != getRClevel(results, &offset, &used, RC6_T1)) return ERR;\r
+    } \r
+    levelB = getRClevel(results, &offset, &used, RC6_T1);\r
+    if (nbits == 3) {\r
+      // T bit is double wide; make sure second half matches\r
+      if (levelB != getRClevel(results, &offset, &used, RC6_T1)) return ERR;\r
+    } \r
+    if (levelA == MARK && levelB == SPACE) { // reversed compared to RC5\r
+      // 1 bit\r
+      data = (data << 1) | 1;\r
+    } \r
+    else if (levelA == SPACE && levelB == MARK) {\r
+      // zero bit\r
+      data <<= 1;\r
+    } \r
+    else {\r
+      return ERR; // Error\r
+    } \r
+  }\r
+  // Success\r
+  results->bits = nbits;\r
+  results->value = data;\r
+  results->decode_type = RC6;\r
+  return DECODED;\r
+}\r
diff --git a/rf433ctl/IRremote/IRremote.h b/rf433ctl/IRremote/IRremote.h
new file mode 100644 (file)
index 0000000..35fb445
--- /dev/null
@@ -0,0 +1,94 @@
+/*\r
+ * IRremote\r
+ * Version 0.1 July, 2009\r
+ * Copyright 2009 Ken Shirriff\r
+ * For details, see http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.htm http://arcfn.com\r
+ *\r
+ * Interrupt code based on NECIRrcv by Joe Knapp\r
+ * http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1210243556\r
+ * Also influenced by http://zovirl.com/2008/11/12/building-a-universal-remote-with-an-arduino/\r
+ */\r
+\r
+#ifndef IRremote_h\r
+#define IRremote_h\r
+\r
+// The following are compile-time library options.\r
+// If you change them, recompile the library.\r
+// If DEBUG is defined, a lot of debugging output will be printed during decoding.\r
+// TEST must be defined for the IRtest unittests to work.  It will make some\r
+// methods virtual, which will be slightly slower, which is why it is optional.\r
+// #define DEBUG\r
+// #define TEST\r
+\r
+// Results returned from the decoder\r
+class decode_results {\r
+public:\r
+  int decode_type; // NEC, SONY, RC5, UNKNOWN\r
+  unsigned long value; // Decoded value\r
+  int bits; // Number of bits in decoded value\r
+  volatile unsigned int *rawbuf; // Raw intervals in .5 us ticks\r
+  int rawlen; // Number of records in rawbuf.\r
+};\r
+\r
+// Values for decode_type\r
+#define NEC 1\r
+#define SONY 2\r
+#define RC5 3\r
+#define RC6 4\r
+#define UNKNOWN -1\r
+\r
+// Decoded value for NEC when a repeat code is received\r
+#define REPEAT 0xffffffff\r
+\r
+// main class for receiving IR\r
+class IRrecv\r
+{\r
+public:\r
+  IRrecv(int recvpin);\r
+  void blink13(int blinkflag);\r
+  int decode(decode_results *results);\r
+  void enableIRIn();\r
+  void resume();\r
+private:\r
+  // These are called by decode\r
+  int getRClevel(decode_results *results, int *offset, int *used, int t1);\r
+  long decodeNEC(decode_results *results);\r
+  long decodeSony(decode_results *results);\r
+  long decodeRC5(decode_results *results);\r
+  long decodeRC6(decode_results *results);\r
+} \r
+;\r
+\r
+// Only used for testing; can remove virtual for shorter code\r
+#ifdef TEST\r
+#define VIRTUAL virtual\r
+#else\r
+#define VIRTUAL\r
+#endif\r
+\r
+class IRsend\r
+{\r
+public:\r
+  IRsend() {}\r
+  void sendNEC(unsigned long data, int nbits);\r
+  void sendSony(unsigned long data, int nbits);\r
+  void sendRaw(unsigned int buf[], int len, int hz);\r
+  void sendRC5(unsigned long data, int nbits);\r
+  void sendRC6(unsigned long data, int nbits);\r
+  // private:\r
+  void enableIROut(int khz);\r
+  VIRTUAL void mark(int usec);\r
+  VIRTUAL void space(int usec);\r
+}\r
+;\r
+\r
+// Some useful constants\r
+\r
+#define USECPERTICK 50  // microseconds per clock interrupt tick\r
+#define RAWBUF 76 // Length of raw duration buffer\r
+\r
+// Marks tend to be 100us too long, and spaces 100us too short\r
+// when received due to sensor lag.\r
+#define MARK_EXCESS 100\r
+\r
+#endif\r
diff --git a/rf433ctl/IRremote/IRremoteInt.h b/rf433ctl/IRremote/IRremoteInt.h
new file mode 100644 (file)
index 0000000..3824dbb
--- /dev/null
@@ -0,0 +1,111 @@
+/*\r
+ * IRremote\r
+ * Version 0.1 July, 2009\r
+ * Copyright 2009 Ken Shirriff\r
+ * For details, see http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.html\r
+ *\r
+ * Interrupt code based on NECIRrcv by Joe Knapp\r
+ * http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1210243556\r
+ * Also influenced by http://zovirl.com/2008/11/12/building-a-universal-remote-with-an-arduino/\r
+ */\r
+\r
+#ifndef IRremoteint_h\r
+#define IRremoteint_h\r
+\r
+#include <WProgram.h>\r
+\r
+#define CLKFUDGE 5      // fudge factor for clock interrupt overhead\r
+#define CLK 256      // max value for clock (timer 2)\r
+#define PRESCALE 8      // timer2 clock prescale\r
+#define SYSCLOCK 16000000  // main Arduino clock\r
+#define CLKSPERUSEC (SYSCLOCK/PRESCALE/1000000)   // timer clocks per microsecond\r
+\r
+#define ERR 0\r
+#define DECODED 1\r
+\r
+#define BLINKLED 13\r
+\r
+// defines for setting and clearing register bits\r
+#ifndef cbi\r
+#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit))\r
+#endif\r
+#ifndef sbi\r
+#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit))\r
+#endif\r
+\r
+// clock timer reset value\r
+#define INIT_TIMER_COUNT2 (CLK - USECPERTICK*CLKSPERUSEC + CLKFUDGE)\r
+#define RESET_TIMER2 TCNT2 = INIT_TIMER_COUNT2\r
+\r
+// pulse parameters in usec\r
+#define NEC_HDR_MARK   9000\r
+#define NEC_HDR_SPACE  4500\r
+#define NEC_BIT_MARK   560\r
+#define NEC_ONE_SPACE  1600\r
+#define NEC_ZERO_SPACE 560\r
+#define NEC_RPT_SPACE  2250\r
+\r
+#define SONY_HDR_MARK  2400\r
+#define SONY_HDR_SPACE 600\r
+#define SONY_ONE_MARK  1200\r
+#define SONY_ZERO_MARK 600\r
+#define SONY_RPT_LENGTH 45000\r
+\r
+#define RC5_T1         889\r
+#define RC5_RPT_LENGTH 46000\r
+\r
+#define RC6_HDR_MARK   2666\r
+#define RC6_HDR_SPACE  889\r
+#define RC6_T1         444\r
+#define RC6_RPT_LENGTH 46000\r
+\r
+#define TOLERANCE 25  // percent tolerance in measurements\r
+#define LTOL (1.0 - TOLERANCE/100.) \r
+#define UTOL (1.0 + TOLERANCE/100.) \r
+\r
+#define _GAP 5000 // Minimum map between transmissions\r
+#define GAP_TICKS (_GAP/USECPERTICK)\r
+\r
+#define TICKS_LOW(us) (int) (((us)*LTOL/USECPERTICK))\r
+#define TICKS_HIGH(us) (int) (((us)*UTOL/USECPERTICK + 1))\r
+\r
+#ifndef DEBUG\r
+#define MATCH(measured_ticks, desired_us) ((measured_ticks) >= TICKS_LOW(desired_us) && (measured_ticks) <= TICKS_HIGH(desired_us))\r
+#define MATCH_MARK(measured_ticks, desired_us) MATCH(measured_ticks, (desired_us) + MARK_EXCESS)\r
+#define MATCH_SPACE(measured_ticks, desired_us) MATCH((measured_ticks), (desired_us) - MARK_EXCESS)\r
+// Debugging versions are in IRremote.cpp\r
+#endif\r
+\r
+// receiver states\r
+#define STATE_IDLE     2\r
+#define STATE_MARK     3\r
+#define STATE_SPACE    4\r
+#define STATE_STOP     5\r
+\r
+// information for the interrupt handler\r
+typedef struct {\r
+  uint8_t recvpin;           // pin for IR data from detector\r
+  uint8_t rcvstate;          // state machine\r
+  uint8_t blinkflag;         // TRUE to enable blinking of pin 13 on IR processing\r
+  unsigned int timer;     // state timer, counts 50uS ticks.\r
+  unsigned int rawbuf[RAWBUF]; // raw data\r
+  uint8_t rawlen;         // counter of entries in rawbuf\r
+} \r
+irparams_t;\r
+\r
+// Defined in IRremote.cpp\r
+extern volatile irparams_t irparams;\r
+\r
+// IR detector output is active low\r
+#define MARK  0\r
+#define SPACE 1\r
+\r
+#define TOPBIT 0x80000000\r
+\r
+#define NEC_BITS 32\r
+#define SONY_BITS 12\r
+#define MIN_RC5_SAMPLES 11\r
+#define MIN_RC6_SAMPLES 1\r
+\r
+#endif\r
+\r
diff --git a/rf433ctl/IRremote/LICENSE.txt b/rf433ctl/IRremote/LICENSE.txt
new file mode 100644 (file)
index 0000000..77cec6d
--- /dev/null
@@ -0,0 +1,458 @@
+
+                 GNU LESSER GENERAL PUBLIC LICENSE
+                      Version 2.1, February 1999
+
+ Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+ 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+[This is the first released version of the Lesser GPL.  It also counts
+ as the successor of the GNU Library Public License, version 2, hence
+ the version number 2.1.]
+
+                           Preamble
+
+  The licenses for most software are designed to take away your
+freedom to share and change it.  By contrast, the GNU General Public
+Licenses are intended to guarantee your freedom to share and change
+free software--to make sure the software is free for all its users.
+
+  This license, the Lesser General Public License, applies to some
+specially designated software packages--typically libraries--of the
+Free Software Foundation and other authors who decide to use it.  You
+can use it too, but we suggest you first think carefully about whether
+this license or the ordinary General Public License is the better
+strategy to use in any particular case, based on the explanations below.
+
+  When we speak of free software, we are referring to freedom of use,
+not price.  Our General Public Licenses are designed to make sure that
+you have the freedom to distribute copies of free software (and charge
+for this service if you wish); that you receive source code or can get
+it if you want it; that you can change the software and use pieces of
+it in new free programs; and that you are informed that you can do
+these things.
+
+  To protect your rights, we need to make restrictions that forbid
+distributors to deny you these rights or to ask you to surrender these
+rights.  These restrictions translate to certain responsibilities for
+you if you distribute copies of the library or if you modify it.
+
+  For example, if you distribute copies of the library, whether gratis
+or for a fee, you must give the recipients all the rights that we gave
+you.  You must make sure that they, too, receive or can get the source
+code.  If you link other code with the library, you must provide
+complete object files to the recipients, so that they can relink them
+with the library after making changes to the library and recompiling
+it.  And you must show them these terms so they know their rights.
+
+  We protect your rights with a two-step method: (1) we copyright the
+library, and (2) we offer you this license, which gives you legal
+permission to copy, distribute and/or modify the library.
+
+  To protect each distributor, we want to make it very clear that
+there is no warranty for the free library.  Also, if the library is
+modified by someone else and passed on, the recipients should know
+that what they have is not the original version, so that the original
+author's reputation will not be affected by problems that might be
+introduced by others.
+\f
+  Finally, software patents pose a constant threat to the existence of
+any free program.  We wish to make sure that a company cannot
+effectively restrict the users of a free program by obtaining a
+restrictive license from a patent holder.  Therefore, we insist that
+any patent license obtained for a version of the library must be
+consistent with the full freedom of use specified in this license.
+
+  Most GNU software, including some libraries, is covered by the
+ordinary GNU General Public License.  This license, the GNU Lesser
+General Public License, applies to certain designated libraries, and
+is quite different from the ordinary General Public License.  We use
+this license for certain libraries in order to permit linking those
+libraries into non-free programs.
+
+  When a program is linked with a library, whether statically or using
+a shared library, the combination of the two is legally speaking a
+combined work, a derivative of the original library.  The ordinary
+General Public License therefore permits such linking only if the
+entire combination fits its criteria of freedom.  The Lesser General
+Public License permits more lax criteria for linking other code with
+the library.
+
+  We call this license the "Lesser" General Public License because it
+does Less to protect the user's freedom than the ordinary General
+Public License.  It also provides other free software developers Less
+of an advantage over competing non-free programs.  These disadvantages
+are the reason we use the ordinary General Public License for many
+libraries.  However, the Lesser license provides advantages in certain
+special circumstances.
+
+  For example, on rare occasions, there may be a special need to
+encourage the widest possible use of a certain library, so that it becomes
+a de-facto standard.  To achieve this, non-free programs must be
+allowed to use the library.  A more frequent case is that a free
+library does the same job as widely used non-free libraries.  In this
+case, there is little to gain by limiting the free library to free
+software only, so we use the Lesser General Public License.
+
+  In other cases, permission to use a particular library in non-free
+programs enables a greater number of people to use a large body of
+free software.  For example, permission to use the GNU C Library in
+non-free programs enables many more people to use the whole GNU
+operating system, as well as its variant, the GNU/Linux operating
+system.
+
+  Although the Lesser General Public License is Less protective of the
+users' freedom, it does ensure that the user of a program that is
+linked with the Library has the freedom and the wherewithal to run
+that program using a modified version of the Library.
+
+  The precise terms and conditions for copying, distribution and
+modification follow.  Pay close attention to the difference between a
+"work based on the library" and a "work that uses the library".  The
+former contains code derived from the library, whereas the latter must
+be combined with the library in order to run.
+\f
+                 GNU LESSER GENERAL PUBLIC LICENSE
+   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+  0. This License Agreement applies to any software library or other
+program which contains a notice placed by the copyright holder or
+other authorized party saying it may be distributed under the terms of
+this Lesser General Public License (also called "this License").
+Each licensee is addressed as "you".
+
+  A "library" means a collection of software functions and/or data
+prepared so as to be conveniently linked with application programs
+(which use some of those functions and data) to form executables.
+
+  The "Library", below, refers to any such software library or work
+which has been distributed under these terms.  A "work based on the
+Library" means either the Library or any derivative work under
+copyright law: that is to say, a work containing the Library or a
+portion of it, either verbatim or with modifications and/or translated
+straightforwardly into another language.  (Hereinafter, translation is
+included without limitation in the term "modification".)
+
+  "Source code" for a work means the preferred form of the work for
+making modifications to it.  For a library, complete source code means
+all the source code for all modules it contains, plus any associated
+interface definition files, plus the scripts used to control compilation
+and installation of the library.
+
+  Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope.  The act of
+running a program using the Library is not restricted, and output from
+such a program is covered only if its contents constitute a work based
+on the Library (independent of the use of the Library in a tool for
+writing it).  Whether that is true depends on what the Library does
+and what the program that uses the Library does.
+  
+  1. You may copy and distribute verbatim copies of the Library's
+complete source code as you receive it, in any medium, provided that
+you conspicuously and appropriately publish on each copy an
+appropriate copyright notice and disclaimer of warranty; keep intact
+all the notices that refer to this License and to the absence of any
+warranty; and distribute a copy of this License along with the
+Library.
+
+  You may charge a fee for the physical act of transferring a copy,
+and you may at your option offer warranty protection in exchange for a
+fee.
+\f
+  2. You may modify your copy or copies of the Library or any portion
+of it, thus forming a work based on the Library, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+    a) The modified work must itself be a software library.
+
+    b) You must cause the files modified to carry prominent notices
+    stating that you changed the files and the date of any change.
+
+    c) You must cause the whole of the work to be licensed at no
+    charge to all third parties under the terms of this License.
+
+    d) If a facility in the modified Library refers to a function or a
+    table of data to be supplied by an application program that uses
+    the facility, other than as an argument passed when the facility
+    is invoked, then you must make a good faith effort to ensure that,
+    in the event an application does not supply such function or
+    table, the facility still operates, and performs whatever part of
+    its purpose remains meaningful.
+
+    (For example, a function in a library to compute square roots has
+    a purpose that is entirely well-defined independent of the
+    application.  Therefore, Subsection 2d requires that any
+    application-supplied function or table used by this function must
+    be optional: if the application does not supply it, the square
+    root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole.  If
+identifiable sections of that work are not derived from the Library,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works.  But when you
+distribute the same sections as part of a whole which is a work based
+on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote
+it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Library.
+
+In addition, mere aggregation of another work not based on the Library
+with the Library (or with a work based on the Library) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+  3. You may opt to apply the terms of the ordinary GNU General Public
+License instead of this License to a given copy of the Library.  To do
+this, you must alter all the notices that refer to this License, so
+that they refer to the ordinary GNU General Public License, version 2,
+instead of to this License.  (If a newer version than version 2 of the
+ordinary GNU General Public License has appeared, then you can specify
+that version instead if you wish.)  Do not make any other change in
+these notices.
+\f
+  Once this change is made in a given copy, it is irreversible for
+that copy, so the ordinary GNU General Public License applies to all
+subsequent copies and derivative works made from that copy.
+
+  This option is useful when you wish to copy part of the code of
+the Library into a program that is not a library.
+
+  4. You may copy and distribute the Library (or a portion or
+derivative of it, under Section 2) in object code or executable form
+under the terms of Sections 1 and 2 above provided that you accompany
+it with the complete corresponding machine-readable source code, which
+must be distributed under the terms of Sections 1 and 2 above on a
+medium customarily used for software interchange.
+
+  If distribution of object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the
+source code from the same place satisfies the requirement to
+distribute the source code, even though third parties are not
+compelled to copy the source along with the object code.
+
+  5. A program that contains no derivative of any portion of the
+Library, but is designed to work with the Library by being compiled or
+linked with it, is called a "work that uses the Library".  Such a
+work, in isolation, is not a derivative work of the Library, and
+therefore falls outside the scope of this License.
+
+  However, linking a "work that uses the Library" with the Library
+creates an executable that is a derivative of the Library (because it
+contains portions of the Library), rather than a "work that uses the
+library".  The executable is therefore covered by this License.
+Section 6 states terms for distribution of such executables.
+
+  When a "work that uses the Library" uses material from a header file
+that is part of the Library, the object code for the work may be a
+derivative work of the Library even though the source code is not.
+Whether this is true is especially significant if the work can be
+linked without the Library, or if the work is itself a library.  The
+threshold for this to be true is not precisely defined by law.
+
+  If such an object file uses only numerical parameters, data
+structure layouts and accessors, and small macros and small inline
+functions (ten lines or less in length), then the use of the object
+file is unrestricted, regardless of whether it is legally a derivative
+work.  (Executables containing this object code plus portions of the
+Library will still fall under Section 6.)
+
+  Otherwise, if the work is a derivative of the Library, you may
+distribute the object code for the work under the terms of Section 6.
+Any executables containing that work also fall under Section 6,
+whether or not they are linked directly with the Library itself.
+\f
+  6. As an exception to the Sections above, you may also combine or
+link a "work that uses the Library" with the Library to produce a
+work containing portions of the Library, and distribute that work
+under terms of your choice, provided that the terms permit
+modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+  You must give prominent notice with each copy of the work that the
+Library is used in it and that the Library and its use are covered by
+this License.  You must supply a copy of this License.  If the work
+during execution displays copyright notices, you must include the
+copyright notice for the Library among them, as well as a reference
+directing the user to the copy of this License.  Also, you must do one
+of these things:
+
+    a) Accompany the work with the complete corresponding
+    machine-readable source code for the Library including whatever
+    changes were used in the work (which must be distributed under
+    Sections 1 and 2 above); and, if the work is an executable linked
+    with the Library, with the complete machine-readable "work that
+    uses the Library", as object code and/or source code, so that the
+    user can modify the Library and then relink to produce a modified
+    executable containing the modified Library.  (It is understood
+    that the user who changes the contents of definitions files in the
+    Library will not necessarily be able to recompile the application
+    to use the modified definitions.)
+
+    b) Use a suitable shared library mechanism for linking with the
+    Library.  A suitable mechanism is one that (1) uses at run time a
+    copy of the library already present on the user's computer system,
+    rather than copying library functions into the executable, and (2)
+    will operate properly with a modified version of the library, if
+    the user installs one, as long as the modified version is
+    interface-compatible with the version that the work was made with.
+
+    c) Accompany the work with a written offer, valid for at
+    least three years, to give the same user the materials
+    specified in Subsection 6a, above, for a charge no more
+    than the cost of performing this distribution.
+
+    d) If distribution of the work is made by offering access to copy
+    from a designated place, offer equivalent access to copy the above
+    specified materials from the same place.
+
+    e) Verify that the user has already received a copy of these
+    materials or that you have already sent this user a copy.
+
+  For an executable, the required form of the "work that uses the
+Library" must include any data and utility programs needed for
+reproducing the executable from it.  However, as a special exception,
+the materials to be distributed need not include anything that is
+normally distributed (in either source or binary form) with the major
+components (compiler, kernel, and so on) of the operating system on
+which the executable runs, unless that component itself accompanies
+the executable.
+
+  It may happen that this requirement contradicts the license
+restrictions of other proprietary libraries that do not normally
+accompany the operating system.  Such a contradiction means you cannot
+use both them and the Library together in an executable that you
+distribute.
+\f
+  7. You may place library facilities that are a work based on the
+Library side-by-side in a single library together with other library
+facilities not covered by this License, and distribute such a combined
+library, provided that the separate distribution of the work based on
+the Library and of the other library facilities is otherwise
+permitted, and provided that you do these two things:
+
+    a) Accompany the combined library with a copy of the same work
+    based on the Library, uncombined with any other library
+    facilities.  This must be distributed under the terms of the
+    Sections above.
+
+    b) Give prominent notice with the combined library of the fact
+    that part of it is a work based on the Library, and explaining
+    where to find the accompanying uncombined form of the same work.
+
+  8. You may not copy, modify, sublicense, link with, or distribute
+the Library except as expressly provided under this License.  Any
+attempt otherwise to copy, modify, sublicense, link with, or
+distribute the Library is void, and will automatically terminate your
+rights under this License.  However, parties who have received copies,
+or rights, from you under this License will not have their licenses
+terminated so long as such parties remain in full compliance.
+
+  9. You are not required to accept this License, since you have not
+signed it.  However, nothing else grants you permission to modify or
+distribute the Library or its derivative works.  These actions are
+prohibited by law if you do not accept this License.  Therefore, by
+modifying or distributing the Library (or any work based on the
+Library), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+  10. Each time you redistribute the Library (or any work based on the
+Library), the recipient automatically receives a license from the
+original licensor to copy, distribute, link with or modify the Library
+subject to these terms and conditions.  You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties with
+this License.
+\f
+  11. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License.  If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Library at all.  For example, if a patent
+license would not permit royalty-free redistribution of the Library by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply,
+and the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system which is
+implemented by public license practices.  Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+
+  12. If the distribution and/or use of the Library is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Library under this License may add
+an explicit geographical distribution limitation excluding those countries,
+so that distribution is permitted only in or among countries not thus
+excluded.  In such case, this License incorporates the limitation as if
+written in the body of this License.
+
+  13. The Free Software Foundation may publish revised and/or new
+versions of the Lesser General Public License from time to time.
+Such new versions will be similar in spirit to the present version,
+but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Library
+specifies a version number of this License which applies to it and
+"any later version", you have the option of following the terms and
+conditions either of that version or of any later version published by
+the Free Software Foundation.  If the Library does not specify a
+license version number, you may choose any version ever published by
+the Free Software Foundation.
+\f
+  14. If you wish to incorporate parts of the Library into other free
+programs whose distribution conditions are incompatible with these,
+write to the author to ask for permission.  For software which is
+copyrighted by the Free Software Foundation, write to the Free
+Software Foundation; we sometimes make exceptions for this.  Our
+decision will be guided by the two goals of preserving the free status
+of all derivatives of our free software and of promoting the sharing
+and reuse of software generally.
+
+                           NO WARRANTY
+
+  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
+WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
+EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
+OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
+KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
+THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
+WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
+AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
+FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
+CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
+LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
+SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
+DAMAGES.
+
diff --git a/rf433ctl/IRremote/examples/IRrecord/IRrecord.pde b/rf433ctl/IRremote/examples/IRrecord/IRrecord.pde
new file mode 100644 (file)
index 0000000..a1cf878
--- /dev/null
@@ -0,0 +1,174 @@
+/*
+ * IRrecord: record and play back IR signals as a minimal 
+ * An IR detector/demodulator must be connected to the input RECV_PIN.
+ * An IR LED must be connected to the output PWM pin 3.
+ * A button must be connected to the input BUTTON_PIN; this is the
+ * send button.
+ * A visible LED can be connected to STATUS_PIN to provide status.
+ *
+ * The logic is:
+ * If the button is pressed, send the IR code.
+ * If an IR code is received, record it.
+ *
+ * Version 0.11 September, 2009
+ * Copyright 2009 Ken Shirriff
+ * http://arcfn.com
+ */
+
+#include <IRremote.h>
+
+int RECV_PIN = 11;
+int BUTTON_PIN = 12;
+int STATUS_PIN = 13;
+
+IRrecv irrecv(RECV_PIN);
+IRsend irsend;
+
+decode_results results;
+
+void setup()
+{
+  Serial.begin(9600);
+  irrecv.enableIRIn(); // Start the receiver
+  pinMode(BUTTON_PIN, INPUT);
+  pinMode(STATUS_PIN, OUTPUT);
+}
+
+// Storage for the recorded code
+int codeType = -1; // The type of code
+unsigned long codeValue; // The code value if not raw
+unsigned int rawCodes[RAWBUF]; // The durations if raw
+int codeLen; // The length of the code
+int toggle = 0; // The RC5/6 toggle state
+
+// Stores the code for later playback
+// Most of this code is just logging
+void storeCode(decode_results *results) {
+  codeType = results->decode_type;
+  int count = results->rawlen;
+  if (codeType == UNKNOWN) {
+    Serial.println("Received unknown code, saving as raw");
+    codeLen = results->rawlen - 1;
+    // To store raw codes:
+    // Drop first value (gap)
+    // Convert from ticks to microseconds
+    // Tweak marks shorter, and spaces longer to cancel out IR receiver distortion
+    for (int i = 1; i <= codeLen; i++) {
+      if (i % 2) {
+        // Mark
+        rawCodes[i - 1] = results->rawbuf[i]*USECPERTICK - MARK_EXCESS;
+        Serial.print(" m");
+      } 
+      else {
+        // Space
+        rawCodes[i - 1] = results->rawbuf[i]*USECPERTICK + MARK_EXCESS;
+        Serial.print(" s");
+      }
+      Serial.print(rawCodes[i - 1], DEC);
+    }
+    Serial.println("");
+  }
+  else {
+    if (codeType == NEC) {
+      Serial.print("Received NEC: ");
+      if (results->value == REPEAT) {
+        // Don't record a NEC repeat value as that's useless.
+        Serial.println("repeat; ignoring.");
+        return;
+      }
+    } 
+    else if (codeType == SONY) {
+      Serial.print("Received SONY: ");
+    } 
+    else if (codeType == RC5) {
+      Serial.print("Received RC5: ");
+    } 
+    else if (codeType == RC6) {
+      Serial.print("Received RC6: ");
+    } 
+    else {
+      Serial.print("Unexpected codeType ");
+      Serial.print(codeType, DEC);
+      Serial.println("");
+    }
+    Serial.println(results->value, HEX);
+    codeValue = results->value;
+    codeLen = results->bits;
+  }
+}
+
+void sendCode(int repeat) {
+  if (codeType == NEC) {
+    if (repeat) {
+      irsend.sendNEC(REPEAT, codeLen);
+      Serial.println("Sent NEC repeat");
+    } 
+    else {
+      irsend.sendNEC(codeValue, codeLen);
+      Serial.print("Sent NEC ");
+      Serial.println(codeValue, HEX);
+    }
+  } 
+  else if (codeType == SONY) {
+    irsend.sendSony(codeValue, codeLen);
+    Serial.print("Sent Sony ");
+    Serial.println(codeValue, HEX);
+  } 
+  else if (codeType == RC5 || codeType == RC6) {
+    if (!repeat) {
+      // Flip the toggle bit for a new button press
+      toggle = 1 - toggle;
+    }
+    // Put the toggle bit into the code to send
+    codeValue = codeValue & ~(1 << (codeLen - 1));
+    codeValue = codeValue | (toggle << (codeLen - 1));
+    if (codeType == RC5) {
+      Serial.print("Sent RC5 ");
+      Serial.println(codeValue, HEX);
+      irsend.sendRC5(codeValue, codeLen);
+    } 
+    else {
+      irsend.sendRC6(codeValue, codeLen);
+      Serial.print("Sent RC6 ");
+      Serial.println(codeValue, HEX);
+    }
+  } 
+  else if (codeType == UNKNOWN /* i.e. raw */) {
+    // Assume 38 KHz
+    irsend.sendRaw(rawCodes, codeLen, 38);
+    Serial.println("Sent raw");
+  }
+}
+
+int lastButtonState;
+
+void loop() {
+  // If button pressed, send the code.
+  int buttonState = digitalRead(BUTTON_PIN);
+  if (lastButtonState == HIGH && buttonState == LOW) {
+    Serial.println("Released");
+    irrecv.enableIRIn(); // Re-enable receiver
+  }
+
+  if (buttonState) {
+    Serial.println("Pressed, sending");
+    digitalWrite(STATUS_PIN, HIGH);
+    sendCode(lastButtonState == buttonState);
+    digitalWrite(STATUS_PIN, LOW);
+    delay(50); // Wait a bit between retransmissions
+  } 
+  else if (irrecv.decode(&results)) {
+    digitalWrite(STATUS_PIN, HIGH);
+    storeCode(&results);
+    irrecv.resume(); // resume receiver
+    digitalWrite(STATUS_PIN, LOW);
+  }
+  lastButtonState = buttonState;
+}
+
+
+
+
+
+
+\r
diff --git a/rf433ctl/IRremote/examples/IRrecvDemo/IRrecvDemo.pde b/rf433ctl/IRremote/examples/IRrecvDemo/IRrecvDemo.pde
new file mode 100644 (file)
index 0000000..14982d8
--- /dev/null
@@ -0,0 +1,28 @@
+/*
+ * IRremote: IRrecvDemo - demonstrates receiving IR codes with IRrecv
+ * An IR detector/demodulator must be connected to the input RECV_PIN.
+ * Version 0.1 July, 2009
+ * Copyright 2009 Ken Shirriff
+ * http://arcfn.com
+ */
+
+#include <IRremote.h>
+
+int RECV_PIN = 11;
+
+IRrecv irrecv(RECV_PIN);
+
+decode_results results;
+
+void setup()
+{
+  Serial.begin(9600);
+  irrecv.enableIRIn(); // Start the receiver
+}
+
+void loop() {
+  if (irrecv.decode(&results)) {
+    Serial.println(results.value, HEX);
+    irrecv.resume(); // Receive the next value
+  }
+}\r
diff --git a/rf433ctl/IRremote/examples/IRrecvDump/IRrecvDump.pde b/rf433ctl/IRremote/examples/IRrecvDump/IRrecvDump.pde
new file mode 100644 (file)
index 0000000..ad3c599
--- /dev/null
@@ -0,0 +1,74 @@
+/*
+ * IRremote: IRrecvDump - dump details of IR codes with IRrecv
+ * An IR detector/demodulator must be connected to the input RECV_PIN.
+ * Version 0.1 July, 2009
+ * Copyright 2009 Ken Shirriff
+ * http://arcfn.com
+ */
+
+#include <IRremote.h>
+
+int RECV_PIN = 11;
+
+IRrecv irrecv(RECV_PIN);
+
+decode_results results;
+
+void setup()
+{
+  Serial.begin(9600);
+  irrecv.enableIRIn(); // Start the receiver
+}
+
+// Dumps out the decode_results structure.
+// Call this after IRrecv::decode()
+// void * to work around compiler issue
+//void dump(void *v) {
+//  decode_results *results = (decode_results *)v
+void dump(decode_results *results) {
+  int count = results->rawlen;
+  if (results->decode_type == UNKNOWN) {
+    Serial.println("Could not decode message");
+  } 
+  else {
+    if (results->decode_type == NEC) {
+      Serial.print("Decoded NEC: ");
+    } 
+    else if (results->decode_type == SONY) {
+      Serial.print("Decoded SONY: ");
+    } 
+    else if (results->decode_type == RC5) {
+      Serial.print("Decoded RC5: ");
+    } 
+    else if (results->decode_type == RC6) {
+      Serial.print("Decoded RC6: ");
+    }
+    Serial.print(results->value, HEX);
+    Serial.print(" (");
+    Serial.print(results->bits, DEC);
+    Serial.println(" bits)");
+  }
+  Serial.print("Raw (");
+  Serial.print(count, DEC);
+  Serial.print("): ");
+
+  for (int i = 0; i < count; i++) {
+    if ((i % 2) == 1) {
+      Serial.print(results->rawbuf[i]*USECPERTICK, DEC);
+    } 
+    else {
+      Serial.print(-(int)results->rawbuf[i]*USECPERTICK, DEC);
+    }
+    Serial.print(" ");
+  }
+  Serial.println("");
+}
+
+
+void loop() {
+  if (irrecv.decode(&results)) {
+    Serial.println(results.value, HEX);
+    dump(&results);
+    irrecv.resume(); // Receive the next value
+  }
+}\r
diff --git a/rf433ctl/IRremote/examples/IRrelay/IRrelay.pde b/rf433ctl/IRremote/examples/IRrelay/IRrelay.pde
new file mode 100644 (file)
index 0000000..f333133
--- /dev/null
@@ -0,0 +1,85 @@
+/*
+ * IRremote: IRrecvDemo - demonstrates receiving IR codes with IRrecv
+ * An IR detector/demodulator must be connected to the input RECV_PIN.
+ * Version 0.1 July, 2009
+ * Copyright 2009 Ken Shirriff
+ * http://arcfn.com
+ */
+
+#include <IRremote.h>
+
+int RECV_PIN = 11;
+int RELAY_PIN = 4;
+
+IRrecv irrecv(RECV_PIN);
+decode_results results;
+
+// Dumps out the decode_results structure.
+// Call this after IRrecv::decode()
+// void * to work around compiler issue
+//void dump(void *v) {
+//  decode_results *results = (decode_results *)v
+void dump(decode_results *results) {
+  int count = results->rawlen;
+  if (results->decode_type == UNKNOWN) {
+    Serial.println("Could not decode message");
+  } 
+  else {
+    if (results->decode_type == NEC) {
+      Serial.print("Decoded NEC: ");
+    } 
+    else if (results->decode_type == SONY) {
+      Serial.print("Decoded SONY: ");
+    } 
+    else if (results->decode_type == RC5) {
+      Serial.print("Decoded RC5: ");
+    } 
+    else if (results->decode_type == RC6) {
+      Serial.print("Decoded RC6: ");
+    }
+    Serial.print(results->value, HEX);
+    Serial.print(" (");
+    Serial.print(results->bits, DEC);
+    Serial.println(" bits)");
+  }
+  Serial.print("Raw (");
+  Serial.print(count, DEC);
+  Serial.print("): ");
+
+  for (int i = 0; i < count; i++) {
+    if ((i % 2) == 1) {
+      Serial.print(results->rawbuf[i]*USECPERTICK, DEC);
+    } 
+    else {
+      Serial.print(-(int)results->rawbuf[i]*USECPERTICK, DEC);
+    }
+    Serial.print(" ");
+  }
+  Serial.println("");
+}
+
+void setup()
+{
+  pinMode(RELAY_PIN, OUTPUT);
+  pinMode(13, OUTPUT);
+    Serial.begin(9600);
+  irrecv.enableIRIn(); // Start the receiver
+}
+
+int on = 0;
+unsigned long last = millis();
+
+void loop() {
+  if (irrecv.decode(&results)) {
+    // If it's been at least 1/4 second since the last
+    // IR received, toggle the relay
+    if (millis() - last > 250) {
+      on = !on;
+      digitalWrite(RELAY_PIN, on ? HIGH : LOW);
+      digitalWrite(13, on ? HIGH : LOW);
+      dump(&results);
+    }
+    last = millis();      
+    irrecv.resume(); // Receive the next value
+  }
+}\r
diff --git a/rf433ctl/IRremote/examples/IRsendDemo/IRsendDemo.pde b/rf433ctl/IRremote/examples/IRsendDemo/IRsendDemo.pde
new file mode 100644 (file)
index 0000000..6941382
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * IRremote: IRsendDemo - demonstrates sending IR codes with IRsend
+ * An IR LED must be connected to Arduino PWM pin 3.
+ * Version 0.1 July, 2009
+ * Copyright 2009 Ken Shirriff
+ * http://arcfn.com
+ */
+
+#include <IRremote.h>
+
+IRsend irsend;
+
+void setup()
+{
+  Serial.begin(9600);
+}
+
+void loop() {
+  if (Serial.read() != -1) {
+    for (int i = 0; i < 3; i++) {
+      irsend.sendSony(0xa90, 12); // Sony TV power code
+      delay(100);
+    }
+  }
+}
+
diff --git a/rf433ctl/IRremote/examples/IRtest/IRtest.pde b/rf433ctl/IRremote/examples/IRtest/IRtest.pde
new file mode 100644 (file)
index 0000000..b1cb522
--- /dev/null
@@ -0,0 +1,190 @@
+/*\r
+ * IRremote: IRtest unittest\r
+ * Version 0.1 July, 2009\r
+ * Copyright 2009 Ken Shirriff\r
+ * http://arcfn.com\r
+ *\r
+ * Note: to run these tests, edit IRremote/IRremote.h to add "#define TEST"\r
+ * You must then recompile the library by removing IRremote.o and restarting\r
+ * the arduino IDE.\r
+ */\r
+\r
+#include <IRremote.h>\r
+#include <IRremoteInt.h>\r
+\r
+// Dumps out the decode_results structure.\r
+// Call this after IRrecv::decode()\r
+// void * to work around compiler issue\r
+//void dump(void *v) {\r
+//  decode_results *results = (decode_results *)v\r
+void dump(decode_results *results) {\r
+  int count = results->rawlen;\r
+  if (results->decode_type == UNKNOWN) {\r
+    Serial.println("Could not decode message");\r
+  } \r
+  else {\r
+    if (results->decode_type == NEC) {\r
+      Serial.print("Decoded NEC: ");\r
+    } \r
+    else if (results->decode_type == SONY) {\r
+      Serial.print("Decoded SONY: ");\r
+    } \r
+    else if (results->decode_type == RC5) {\r
+      Serial.print("Decoded RC5: ");\r
+    } \r
+    else if (results->decode_type == RC6) {\r
+      Serial.print("Decoded RC6: ");\r
+    }\r
+    Serial.print(results->value, HEX);\r
+    Serial.print(" (");\r
+    Serial.print(results->bits, DEC);\r
+    Serial.println(" bits)");\r
+  }\r
+  Serial.print("Raw (");\r
+  Serial.print(count, DEC);\r
+  Serial.print("): ");\r
+\r
+  for (int i = 0; i < count; i++) {\r
+    if ((i % 2) == 1) {\r
+      Serial.print(results->rawbuf[i]*USECPERTICK, DEC);\r
+    } \r
+    else {\r
+      Serial.print(-(int)results->rawbuf[i]*USECPERTICK, DEC);\r
+    }\r
+    Serial.print(" ");\r
+  }\r
+  Serial.println("");\r
+}\r
+\r
+IRrecv irrecv(0);\r
+decode_results results;\r
+\r
+class IRsendDummy : \r
+public IRsend\r
+{\r
+public:\r
+  // For testing, just log the marks/spaces\r
+#define SENDLOG_LEN 128\r
+  int sendlog[SENDLOG_LEN];\r
+  int sendlogcnt;\r
+  IRsendDummy() : \r
+  IRsend() {\r
+  }\r
+  void reset() {\r
+    sendlogcnt = 0;\r
+  }\r
+  void mark(int time) {\r
+    sendlog[sendlogcnt] = time;\r
+    if (sendlogcnt < SENDLOG_LEN) sendlogcnt++;\r
+  }\r
+  void space(int time) {\r
+    sendlog[sendlogcnt] = -time;\r
+    if (sendlogcnt < SENDLOG_LEN) sendlogcnt++;\r
+  }\r
+  // Copies the dummy buf into the interrupt buf\r
+  void useDummyBuf() {\r
+    int last = SPACE;\r
+    irparams.rcvstate = STATE_STOP;\r
+    irparams.rawlen = 1; // Skip the gap\r
+    for (int i = 0 ; i < sendlogcnt; i++) {\r
+      if (sendlog[i] < 0) {\r
+        if (last == MARK) {\r
+          // New space\r
+          irparams.rawbuf[irparams.rawlen++] = (-sendlog[i] - MARK_EXCESS) / USECPERTICK;\r
+          last = SPACE;\r
+        } \r
+        else {\r
+          // More space\r
+          irparams.rawbuf[irparams.rawlen - 1] += -sendlog[i] / USECPERTICK;\r
+        }\r
+      } \r
+      else if (sendlog[i] > 0) {\r
+        if (last == SPACE) {\r
+          // New mark\r
+          irparams.rawbuf[irparams.rawlen++] = (sendlog[i] + MARK_EXCESS) / USECPERTICK;\r
+          last = MARK;\r
+        } \r
+        else {\r
+          // More mark\r
+          irparams.rawbuf[irparams.rawlen - 1] += sendlog[i] / USECPERTICK;\r
+        }\r
+      }\r
+    }\r
+    if (irparams.rawlen % 2) {\r
+      irparams.rawlen--; // Remove trailing space\r
+    }\r
+  }\r
+};\r
+\r
+IRsendDummy irsenddummy;\r
+\r
+void verify(unsigned long val, int bits, int type) {\r
+  irsenddummy.useDummyBuf();\r
+  irrecv.decode(&results);\r
+  Serial.print("Testing ");\r
+  Serial.print(val, HEX);\r
+  if (results.value == val && results.bits == bits && results.decode_type == type) {\r
+    Serial.println(": OK");\r
+  } \r
+  else {\r
+    Serial.println(": Error");\r
+    dump(&results);\r
+  }\r
+}  \r
+\r
+void testNEC(unsigned long val, int bits) {\r
+  irsenddummy.reset();\r
+  irsenddummy.sendNEC(val, bits);\r
+  verify(val, bits, NEC);\r
+}\r
+void testSony(unsigned long val, int bits) {\r
+  irsenddummy.reset();\r
+  irsenddummy.sendSony(val, bits);\r
+  verify(val, bits, SONY);\r
+}\r
+void testRC5(unsigned long val, int bits) {\r
+  irsenddummy.reset();\r
+  irsenddummy.sendRC5(val, bits);\r
+  verify(val, bits, RC5);\r
+}\r
+void testRC6(unsigned long val, int bits) {\r
+  irsenddummy.reset();\r
+  irsenddummy.sendRC6(val, bits);\r
+  verify(val, bits, RC6);\r
+}\r
+\r
+void test() {\r
+  Serial.println("NEC tests");\r
+  testNEC(0x00000000, 32);\r
+  testNEC(0xffffffff, 32);\r
+  testNEC(0xaaaaaaaa, 32);\r
+  testNEC(0x55555555, 32);\r
+  testNEC(0x12345678, 32);\r
+  Serial.println("Sony tests");\r
+  testSony(0xfff, 12);\r
+  testSony(0x000, 12);\r
+  testSony(0xaaa, 12);\r
+  testSony(0x555, 12);\r
+  testSony(0x123, 12);\r
+  Serial.println("RC5 tests");\r
+  testRC5(0xfff, 12);\r
+  testRC5(0x000, 12);\r
+  testRC5(0xaaa, 12);\r
+  testRC5(0x555, 12);\r
+  testRC5(0x123, 12);\r
+  Serial.println("RC6 tests");\r
+  testRC6(0xfffff, 20);\r
+  testRC6(0x00000, 20);\r
+  testRC6(0xaaaaa, 20);\r
+  testRC6(0x55555, 20);\r
+  testRC6(0x12345, 20);\r
+}\r
+\r
+void setup()\r
+{\r
+  Serial.begin(9600);\r
+  test();\r
+}\r
+\r
+void loop() {\r
+}\r
diff --git a/rf433ctl/IRremote/keywords.txt b/rf433ctl/IRremote/keywords.txt
new file mode 100644 (file)
index 0000000..7bf0f25
--- /dev/null
@@ -0,0 +1,37 @@
+#######################################
+# Syntax Coloring Map For IRremote
+#######################################
+
+#######################################
+# Datatypes (KEYWORD1)
+#######################################
+
+decode_results KEYWORD1
+IRrecv KEYWORD1
+IRsend KEYWORD1
+
+#######################################
+# Methods and Functions (KEYWORD2)
+#######################################
+
+blink13 KEYWORD2
+decode KEYWORD2
+enableIRIn KEYWORD2
+resume KEYWORD2
+enableIROut KEYWORD2
+sendNEC KEYWORD2
+sendSony KEYWORD2
+sendRaw KEYWORD2
+sendRC5 KEYWORD2
+sendRC6 KEYWORD2
+#
+#######################################
+# Constants (LITERAL1)
+#######################################
+
+NEC LITERAL1
+SONY LITERAL1
+RC5 LITERAL1
+RC6 LITERAL1
+UNKNOWN LITERAL1
+REPEAT LITERAL1
index 8c599fb..916e3fe 100755 (executable)
@@ -18,7 +18,7 @@ SRC =  $(ARDUINO)/pins_arduino.c $(ARDUINO)/wiring.c \
 $(ARDUINO)/wiring_analog.c $(ARDUINO)/wiring_digital.c \
 $(ARDUINO)/wiring_pulse.c $(ARDUINO)/wiring_serial.c \
 $(ARDUINO)/wiring_shift.c $(ARDUINO)/WInterrupts.c
-CXXSRC = OneWire/OneWire.cpp DallasTemperature/DallasTemperature.cpp  $(ARDUINO)/HardwareSerial.cpp $(ARDUINO)/Print.cpp $(ARDUINO)/WMath.cpp
+CXXSRC = OneWire/OneWire.cpp DallasTemperature/DallasTemperature.cpp  $(ARDUINO)/HardwareSerial.cpp $(ARDUINO)/Print.cpp $(ARDUINO)/WMath.cpp IRremote/IRremote.cpp
 FORMAT = ihex
 
 
@@ -37,8 +37,8 @@ CDEFS = -DF_CPU=$(F_CPU)
 CXXDEFS = -DF_CPU=$(F_CPU)
 
 # Place -I options here
-CINCS =  -I ./OneWire -I ./DallasTemperature -I$(ARDUINO)
-CXXINCS = -I ./OneWire -I ./DallasTemperature -I$(ARDUINO)
+CINCS =  -I ./OneWire -I ./DallasTemperature -I ./IRremote -I$(ARDUINO)
+CXXINCS = -I ./OneWire -I ./DallasTemperature -I ./IRremote -I$(ARDUINO)
 
 # Compiler flag to set the C Standard level.
 # c89   - "ANSI" C
index 7c327d3..ae61d39 100644 (file)
@@ -3,6 +3,7 @@
 #include <inttypes.h>
 #include <OneWire.h>
 #include <DallasTemperature.h>
+#include <IRremote.h>
 
 //********************************************************************//
 
 //duration PanicButton needs to be pressed before status change occurs (i.e. for two PanicButton Reports, the buttons needs to be pressed 1000 cycles, releases 1000 cycles and again pressed 1000 cycles)
 #define PB_TRESHOLD 1000
 #define PHOTO_SAMPLE_INTERVAL 4000
+#define IRREMOTE_SEND_PIN 3   //hardcoded in library
+//WARNING IRremote Lib uses TCCR2
 
 OneWire  onewire(ONE_WIRE_PIN);
 DallasTemperature dallas_sensors(&onewire);
 DeviceAddress onShieldTemp = { 0x10, 0xE7, 0x77, 0xD3, 0x01, 0x08, 0x00, 0x3F };
+IRsend irsend; 
 #define TEMPC_OFFSET_ARDUINO_GENEREATED_HEAT 
 
+//********************************************************************//
+// IR Codes, 32 bit, NEC
+const int YAMAHA_CODE_BITS=32;
+const unsigned long int YAMAHA_POWER = 0x000000005EA1F807;
+const unsigned long int YAMAHA_CD = 0x000000005EA1A857;
+const unsigned long int YAMAHA_TUNER = 0x000000005EA16897;
+const unsigned long int YAMAHA_SAT = 0x000000005EA19867;
+const unsigned long int YAMAHA_DVD = 0x000000005EA118E7;
+const unsigned long int YAMAHA_DVD_SPDIF = 0x000000005EA1E817;
+const unsigned long int YAMAHA_VCR_1 = 0x000000005EA1F00F;
+const unsigned long int YAMAHA_TUNER_PLUS = 0x000000005EA108F7;
+const unsigned long int YAMAHA_TUNER_ABCDE = 0x000000005EA148B7;
+const unsigned long int YAMAHA_FRONT_LEVEL_P = 0x000000005EA101FE;
+const unsigned long int YAMAHA_FRONT_LEVEL_M = 0x000000005EA1817E;
+const unsigned long int YAMAHA_CENTRE_LEVEL_P = 0x000000005EA141BE;
+const unsigned long int YAMAHA_CENTRE_LEVEL_M = 0x000000005EA1C13E;
+const unsigned long int YAMAHA_REAR_LEVEL_P = 0x000000005EA17A85;
+const unsigned long int YAMAHA_REAR_LEVEL_M = 0x000000005EA1FA05;
+const unsigned long int YAMAHA_DELAY_TIME_P = 0x000000005EA14AB5;
+const unsigned long int YAMAHA_DELAY_TIME_M = 0x000000005EA1CA35;
+const unsigned long int YAMAHA_MUTE = 0x000000005EA138C7;
+const unsigned long int YAMAHA_VOLUME_UP = 0x000000005EA158A7;
+const unsigned long int YAMAHA_VOLUME_DOWN = 0x000000005EA1D827;
+
+//********************************************************************//
+
 typedef struct {
   byte offset;
   byte state;
@@ -432,6 +462,41 @@ void loop()
       sensorEchoCommand(command);
       printLightLevel();
     }
+    else if (command == '1')
+    {
+      irsend.sendNEC(YAMAHA_POWER,YAMAHA_CODE_BITS);
+      Serial.println("Ok");
+    }
+    else if (command == '2')
+    {
+      irsend.sendNEC(YAMAHA_CD,YAMAHA_CODE_BITS);
+      Serial.println("Ok");
+    }
+    else if (command == '3')
+    {
+      irsend.sendNEC(YAMAHA_DVD_SPDIF,YAMAHA_CODE_BITS);
+      Serial.println("Ok");
+    }
+    else if (command == '4')
+    {
+      irsend.sendNEC(YAMAHA_TUNER,YAMAHA_CODE_BITS);
+      Serial.println("Ok");
+    }    
+    else if (command == '5')
+    {
+      irsend.sendNEC(YAMAHA_VOLUME_UP,YAMAHA_CODE_BITS);
+      Serial.println("Ok");
+    }
+    else if (command == '6')
+    {
+      irsend.sendNEC(YAMAHA_VOLUME_DOWN,YAMAHA_CODE_BITS);
+      Serial.println("Ok");
+    }
+    else if (command == '7')
+    {
+      irsend.sendNEC(YAMAHA_MUTE,YAMAHA_CODE_BITS);
+      Serial.println("Ok");
+    }
     else
       Serial.println("Error: unknown command");
   }