아두이노 나노로 리모컨 카운터(계수기) 만들기
리모컨으로 작동하는 계수기를 만들 일이 있어 아두이노 나노와 lcd를 조합해서 만들어봄 IRremote.h 라이브러리는 2.5.0 버전을 사용함, 2.8이후버전대를 사용할 경우 소스를 수정해야함 #include //ver 2.5.0 #include "U8glib.h" #include // I2C control library #include // LCD library int RECV_PIN = 7; long cnt = 0; IRrecv irrecv(RECV_PIN); decode_results results; //sda->a4, scl -> a5, vcc->5v LiquidCrystal_I2C lcd(0x3f, 16, 2); // set the LCD address to 0x20 for a 16 chars..