적외선 수신모듈(IR)리모컨 다루기

GND, VCC(5V), 디지털11번핀을 통해 정보를 입력

해당 라이브러리를 다운받고 추가합니다. https://github.com/shirriff/Arduino-IRremote/

스케치에서 파일>예제>Arduino-IRremote>IRrecvDemo를 열어 컴파일하고 업로드 합니다.

#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
    }
    delay(100);
}

시리얼 모니터를 켜고 적외선 수신모듈 방향을 보고 리모컨을 누르면 코드가 찍히는 것을 확인 할 수 있음.

#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.print("Unknown encoding: ");
  } 
  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: ");
  }
  else if (results->decode_type == PANASONIC) {    
    Serial.print("Decoded PANASONIC - Address: ");
    Serial.print(results->panasonicAddress,HEX);
    Serial.print(" Value: ");
  }
  else if (results->decode_type == JVC) {
     Serial.print("Decoded JVC: ");
  }
  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
  }
}