#include <LiquidCrystal.h>
#include "LightSensorKeypad.h"
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
LightSensorKeypad lightSensorKeypad(lcd);
// #define LDR_PIN_0 A0
// #define LDR_PIN_1 A1
// #define LDR_PIN_2 A2
// #define LDR_PIN_3 A3
// #define LDR_PIN_4 A4
// #define LDR_PIN_5 A5
// #define LDR_PIN_6 6
void setup() {
lightSensorKeypad.setup();
}
void loop() {
lightSensorKeypad.loop();
}