#include <LiquidCrystal.h>
#include "LightSensorKeypad.h"
#include "icons.h"
#include <Servo.h>
#include "SafeState.h"
/* Locking mechanism definitions */
#define SERVO_PIN 6
#define SERVO_LOCK_POS 20
#define SERVO_UNLOCK_POS 90
Servo lockServo;
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(" ");
}