#include <Keypad.h>
#include <LiquidCrystal_I2C.h>
#include <EEPROM.h>


const uint8_t ROWS = 4;
const uint8_t COLS = 4;
char keys[ROWS][COLS] = {
  { '1', '2', '3', 'A' },
  { '4', '5', '6', 'B' },
  { '7', '8', '9', 'C' },
  { '*', '0', '#', 'D' }
};

uint8_t colPins[COLS] = { 5, 4, 3, 2 }; // Pins connected to C1, C2, C3, C4
uint8_t rowPins[ROWS] = { 9, 8, 7, 6 }; // Pins connected to R1, R2, R3, R4

Keypad keypad = Keypad(makeKeymap(keys), rowPins, colPins, ROWS, COLS);

LiquidCrystal_I2C lcd(0x27, 20, 4); // set the LCD address to 0x27 for a 16 chars and 2 line display

#define Password_Length 5 // Inserire la lunghezza della password
//se la password è lunga 7 caratteri inserire 8
//se la password è lunga 8 caratteri inserire 9 ecc..
char Password[Password_Length];
byte data_count = 0, master_count = 0;
char customKey;
char ckPassword[Password_Length];
char pippo;
const int rgbPins[] = { 12, 11, 10};
unsigned long inizio, fine, trascorso;  // variabili per funzioni millis() showStartupMessage
//unsigned long inizio, fine, trascorso;  // variabili per funzioni millis() showStartupMessage






void setup() {
  Serial.begin(9600);
  for ( int i = 0; i < 3; i++)
    pinMode( rgbPins[i], OUTPUT); // inizializziamo le uscite arduino -> RGB come uscite
  digitalWrite(rgbPins[0], HIGH);
  lcd.init();                      // initialize the lcd
  showStartupMessage();

}


void loop() {


  digitalWrite(rgbPins[0], LOW);
  lcd.setCursor(0, 0);
  lcd.print("  PASSWORD...");
  customKey = keypad.getKey();

  customKey = keypad.waitForKey();
  if (customKey == '#') {
    changePw();

  }

  Serial.println("pippo");

}