#include <LiquidCrystal_I2C.h>
#include <IRremote.h>
int ir_pin_receiver = 2;
int button_value = 0;
IRrecv receiver(ir_pin_receiver);
LiquidCrystal_I2C lcd(0x27, 20,4);
void setup() {
// put your setup code here, to run once:
receiver.enableIRIN();
}
void loop() {
// put your main code here, to run repeatedly:
}