#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() {
Serial.begin(9600); // Initialize serial communication
lightSensorKeypad.setup();
lcd.begin(20, 4);
lcd.setCursor(3, 0);
// lcd.print("wokwi-lcd2004");
}
void loop() {
lightSensorKeypad.loop();
lcd.setCursor(2, 0);
// lcd.print(" ");
}