Microsoft MVP성태의 닷넷 이야기
사물인터넷: 38. 아두이노에서 적외선 수신기 기본 사용법 [링크 복사], [링크+제목 복사]
조회: 14355
글쓴 사람
정성태 (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)
12870정성태12/9/20216063개발 환경 구성: 614. 파이썬 - PyPI 패키지 만들기 (4) package_data 옵션
12869정성태12/8/20218264개발 환경 구성: 613. git clone 실행 시 fingerprint 묻는 단계를 생략하는 방법
12868정성태12/7/20216835오류 유형: 770. twine 업로드 시 "HTTPError: 400 Bad Request ..." 오류 [1]
12867정성태12/7/20216544개발 환경 구성: 612. 파이썬 - PyPI 패키지 만들기 (3) entry_points 옵션
12866정성태12/7/202113917오류 유형: 769. "docker build ..." 시 "failed to solve with frontend dockerfile.v0: failed to read dockerfile ..." 오류
12865정성태12/6/20216612개발 환경 구성: 611. 파이썬 - PyPI 패키지 만들기 (2) long_description, cmdclass 옵션
12864정성태12/6/20215085Linux: 46. WSL 환경에서 find 명령을 사용해 파일을 찾는 방법
12863정성태12/4/20216980개발 환경 구성: 610. 파이썬 - PyPI 패키지 만들기
12862정성태12/3/20215722오류 유형: 768. Golang - 빌드 시 "cmd/go: unsupported GOOS/GOARCH pair linux /amd64" 오류
12861정성태12/3/20217947개발 환경 구성: 609. 파이썬 - "Windows embeddable package"로 개발 환경 구성하는 방법
12860정성태12/1/20216053오류 유형: 767. SQL Server - 127.0.0.1로 접속하는 경우 "Access is denied"가 발생한다면?
12859정성태12/1/202112199개발 환경 구성: 608. Hyper-V 가상 머신에 Console 모드로 로그인하는 방법
12858정성태11/30/20219455개발 환경 구성: 607. 로컬의 USB 장치를 원격 머신에 제공하는 방법 - usbip-win
12857정성태11/24/20216942개발 환경 구성: 606. WSL Ubuntu 20.04에서 파이썬을 위한 uwsgi 설치 방법
12856정성태11/23/20218721.NET Framework: 1121. C# - 동일한 IP:Port로 바인딩 가능한 서버 소켓 [2]
12855정성태11/13/20216117개발 환경 구성: 605. Azure App Service - Kudu SSH 환경에서 FTP를 이용한 파일 전송
12854정성태11/13/20217665개발 환경 구성: 604. Azure - 윈도우 VM에서 FTP 여는 방법
12853정성태11/10/20216044오류 유형: 766. Azure App Service - JBoss 호스팅 생성 시 "This region has quota of 0 PremiumV3 instances for your subscription. Try selecting different region or SKU."
12851정성태11/1/20217368스크립트: 34. 파이썬 - MySQLdb 기본 예제 코드
12850정성태10/27/20218514오류 유형: 765. 우분투에서 pip install mysqlclient 실행 시 "OSError: mysql_config not found" 오류
12849정성태10/17/20217686스크립트: 33. JavaScript와 C#의 시간 변환 [1]
12848정성태10/17/20218641스크립트: 32. 파이썬 - sqlite3 기본 예제 코드 [1]
12847정성태10/14/20218479스크립트: 31. 파이썬 gunicorn - WORKER TIMEOUT 오류 발생
12846정성태10/7/20218251스크립트: 30. 파이썬 __debug__ 플래그 변수에 따른 코드 실행 제어
12845정성태10/6/20218093.NET Framework: 1120. C# - BufferBlock<T> 사용 예제 [5]파일 다운로드1
12844정성태10/3/20216127오류 유형: 764. MSI 설치 시 "... is accessible and not read-only." 오류 메시지
... 16  17  18  19  20  21  22  23  24  25  26  27  28  29  [30]  ...