Microsoft MVP성태의 닷넷 이야기
사물인터넷: 38. 아두이노에서 적외선 수신기 기본 사용법 [링크 복사], [링크+제목 복사]
조회: 14369
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 3개 있습니다.)

아두이노에서 적외선 수신기 기본 사용법

우선 이 글에서 사용한 적외선 수신에 대한 부품 먼저 소개합니다.

Infrared_receiver.jpg

구매 링크는 다음과 같습니다.

아두이노 KY-022 적외선 센서 수신기 모듈(AS0150)
; http://arduinostory.com/goods/goods_view.php?goodsNo=1000000150

제조사: 애니벤더
원산지: 중국
사양:
    전압: 5V
    포트: 디지털 레벨
    전송 거리: 1~8m
    플랫폼: Arduino 마이크로 컨트롤러 
    크기: 가로 14mm x 세로 20mm x 높이 10mm

말도 안 된다고 생각하시겠지만 별도의 datasheet는 없었습니다. 그렇다면 도대체 어떤 핀이 어느 용도인지 어떻게 알아낼 수 있을까요? 다행히 검색을 해보면,

KY-022 Infrared IR Sensor Receiver Module For Arduino
; https://forum.banggood.com/forum-topic-28885.html

다음과 같은 그림으로 쉽게 확인할 수 있습니다.

KY_022_Arduino_ir.png

또는 아래의 제품과 아주 동일한 것 같지는 않은데,

KY-022 Infrared Receiver Module
; https://arduinomodules.info/ky-022-infrared-receiver-module/

Operating Voltage 2.7 to 5.5V 
Operating Current 0.4 to 1.5mA 
Reception Distance 18m 
Reception Angle ±45°
Carrier Frequency 38KHz 
Low Level Voltage 0.4V 
High Level Voltage 4.5V 
Ambient Light Filter up to 500LUX 

핀에 대한 정보가 다음과 같이 있습니다.

KY-012 Arduino
S Signal
Middle +5V
- GND

실제로 제가 구매한 IR 수신기 역시 위와 같이 보드에 좌측으로 "-" 표시와 우측으로 "S"가 있었고 테스트 결과 그 핀 배열로 동작했습니다. 일단 이렇게 핀만 확인하면 해당 제품에는 저항이 포함되어 있기 때문에 별도의 부가 저항 없이 곧바로 다음과 같이 간단한 회로 구성으로 사용할 수 있습니다.

ir_recv_1.png

남은 작업은 코딩인데요, Arduino IDE에서 "Sketch" / "Include Library" / "Manager Libraries..."를 이용해 "IRRemote"를 검색하면 "shirriff"라는 사람이 만든 모듈을 구할 수 있습니다. 그것을 추가하고 github에 공개된 원본 소스와 예제 코드에 따라,

z3t0/Arduino-IRremote 
; https://github.com/z3t0/Arduino-IRremote

원하는 작업을 추가합니다. 제 경우에 2번 핀에 연결했기 때문에 다음과 같이 초기화하고,

#include <boarddefs.h>
#include <IRremote.h>
#include <IRremoteInt.h>
#include <ir_Lego_PF_BitStreamEncoder.h>

int RECV_PIN = 2;
IRrecv irrecv(RECV_PIN);
decode_results results;

void setup() {
  Serial.begin(9600);
  irrecv.enableIRIn(); // Start the receiver
}

loop에서는 https://github.com/z3t0/Arduino-IRremote 코드에서 구한 dump 함수를 이용해 적외선 신호가 수신될 때마다 그 값을 Serial 출력에 나오도록 만들었습니다.

void dump(decode_results *results) {
  // Dumps out the decode_results structure.
  // Call this after IRrecv::decode()
  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->address, HEX);
    Serial.print(" Value: ");
  }
  else if (results->decode_type == LG) {
    Serial.print("Decoded LG: ");
  }
  else if (results->decode_type == JVC) {
    Serial.print("Decoded JVC: ");
  }
  else if (results->decode_type == AIWA_RC_T501) {
    Serial.print("Decoded AIWA RC T501: ");
  }
  else if (results->decode_type == WHYNTER) {
    Serial.print("Decoded Whynter: ");
  }
  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 = 1; i < count; i++) {
    if (i & 1) {
      Serial.print(results->rawbuf[i]*USECPERTICK, DEC);
    }
    else {
      Serial.write('-');
      Serial.print((unsigned long) results->rawbuf[i]*USECPERTICK, DEC);
    }
    Serial.print(" ");
  }
  Serial.println();
}

void loop() {
  if (irrecv.decode(&results) == true)
  {
    Serial.println(results.value, HEX);
    dump(&results);
    irrecv.resume();
    return;                  
  }

  delay(100);
}

테스트를 위해 ^^ 우리 집에 있는 형광등 On/Off 리모컨을 4번 써서 수신하니 각각 다음의 데이터가 들어왔습니다.

33E09F86
Unknown encoding: 33E09F86 (32 bits)
Raw (26): 3550 -1750 600 -400 600 -1800 550 -450 600 -450 600 -1800 550 -450 600 -450 600 -500 600 -450 600 -400 650 -400 550 

33E09F86
Unknown encoding: 33E09F86 (32 bits)
Raw (26): 3550 -1750 600 -400 600 -1800 550 -450 600 -450 600 -1800 550 -450 600 -450 600 -450 650 -450 550 -450 600 -450 550 

33E09F86
Unknown encoding: 33E09F86 (32 bits)
Raw (26): 3600 -1700 650 -400 600 -1750 600 -400 600 -500 600 -1750 600 -400 650 -400 600 -500 600 -450 600 -450 600 -400 600 

33E09F86
Unknown encoding: 33E09F86 (32 bits)
Raw (26): 3600 -1750 600 -400 600 -1750 600 -400 650 -450 600 -1750 600 -400 650 -400 600 -500 600 -450 600 -450 600 -400 600 

보는 바와 같이 매번 동일한 데이터가 들어오진 않습니다. 그래도 크게 상관은 없고 저 중에 하나를 뽑아서 IR 송신기로 그대로 보내기만 하면 동작합니다. (송신에 대해서는 다음 글에서 다룹니다. ^^)

첨부 파일은 이 글의 전체 소스 코드와 회로 그림에 대한 원본 fzz 파일이 들어 있습니다. 또한 아래는 KY-022 Infrared Receiver Module에 대한 Fritzing 부품 파일입니다.

KY-022 Infrared Receiver Module Zip File
; https://arduinomodules.info/download/ky-022-infrared-receiver-module-zip-file/




참고로, 제가 가진 IR Receiver 중에는 이 글에서 소개한 보드 일체형 제품이 아닌, 아래와 같이 단지 핀 3개만을 가진 IR Receiver 단품도 있습니다.

ir_recv_3.png

위와 같은 단품을 쓸 때는 이 글에서 설명한 대로 회로를 구성하면 안 됩니다. 왜냐하면 보드의 경우에는 저항을 자체 포함해서 제공했으므로 상관이 없지만 위의 부품만을 연결할 때는 5V 입력 단자에 저항을 하나 연결하는 것이 좋습니다. 게다가 핀에 대한 연결도 바뀌는데요, 왜냐하면 원래 단품 IR Receiver가 위의 그림 기준으로 왼쪽부터 Signal - GND - Vcc이기 때문입니다. (보드 일체형 제품의 경우에는 저 배열을 보드 상에서 바꿔 GND - Vcc - Signal로 제공하는 것입니다.)

그래서 튀어나온 면 기준으로 다음과 같이 회로를 구성해야 합니다.

ir_recv_4.png

Fritzing Parts - Homautomation
; http://www.homautomation.org/fritzing-parts/




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 10/18/2018]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2023-01-04 09시09분
정성태

... 16  17  18  19  20  [21]  22  23  24  25  26  27  28  29  30  ...
NoWriterDateCnt.TitleFile(s)
13098정성태7/13/20226082개발 환경 구성: 647. Azure - scale-out 상태의 App Service에서 특정 인스턴스에 요청을 보내는 방법 [1]
13097정성태7/12/20225490오류 유형: 817. Golang - binary.Read: invalid type int32
13096정성태7/8/20228241.NET Framework: 2030. C# 11 - UTF-8 문자열 리터럴
13095정성태7/7/20226321Windows: 208. AD 도메인에 참여하지 않은 컴퓨터에서 Kerberos 인증을 사용하는 방법
13094정성태7/6/20226022오류 유형: 816. Golang - "short write" 오류 원인
13093정성태7/5/20226948.NET Framework: 2029. C# - HttpWebRequest로 localhost 접속 시 2초 이상 지연
13092정성태7/3/20227886.NET Framework: 2028. C# - HttpWebRequest의 POST 동작 방식파일 다운로드1
13091정성태7/3/20226703.NET Framework: 2027. C# - IPv4, IPv6를 모두 지원하는 서버 소켓 생성 방법
13090정성태6/29/20225835오류 유형: 815. PyPI에 업로드한 패키지가 반영이 안 되는 경우
13089정성태6/28/20226321개발 환경 구성: 646. HOSTS 파일 변경 시 Edge 브라우저에 반영하는 방법
13088정성태6/27/20225441개발 환경 구성: 645. "Developer Command Prompt for VS 2022" 명령행 환경의 폰트를 바꾸는 방법
13087정성태6/23/20228398스크립트: 41. 파이썬 - FastAPI / uvicorn 호스팅 환경에서 asyncio 사용하는 방법 [1]
13086정성태6/22/20227812.NET Framework: 2026. C# 11 - 문자열 보간 개선 2가지파일 다운로드1
13085정성태6/22/20227876.NET Framework: 2025. C# 11 - 원시 문자열 리터럴(raw string literals)파일 다운로드1
13084정성태6/21/20226517개발 환경 구성: 644. Windows - 파이썬 2.7을 msi 설치 없이 구성하는 방법
13083정성태6/20/20227089.NET Framework: 2024. .NET 7에 도입된 GC의 메모리 해제에 대한 segment와 region의 차이점 [2]
13082정성태6/19/20226134.NET Framework: 2023. C# - Process의 I/O 사용량을 보여주는 GetProcessIoCounters Win32 API파일 다운로드1
13081정성태6/17/20226210.NET Framework: 2022. C# - .NET 7 Preview 5 신규 기능 - System.IO.Stream ReadExactly / ReadAtLeast파일 다운로드1
13080정성태6/17/20226825개발 환경 구성: 643. Visual Studio 2022 17.2 버전에서 C# 11 또는 .NET 7.0 preview 적용
13079정성태6/17/20224568오류 유형: 814. 파이썬 - Error: The file/path provided (...) does not appear to exist
13078정성태6/16/20226587.NET Framework: 2021. WPF - UI Thread와 Render Thread파일 다운로드1
13077정성태6/15/20226920스크립트: 40. 파이썬 - PostgreSQL 환경 구성
13075정성태6/15/20225880Linux: 50. Linux - apt와 apt-get의 차이 [2]
13074정성태6/13/20226181.NET Framework: 2020. C# - NTFS 파일에 사용자 정의 속성값 추가하는 방법파일 다운로드1
13073정성태6/12/20226381Windows: 207. Windows Server 2022에 도입된 WSL 2
13072정성태6/10/20226677Linux: 49. Linux - ls 명령어로 출력되는 디렉터리 색상 변경 방법
... 16  17  18  19  20  [21]  22  23  24  25  26  27  28  29  30  ...