#include <LiquidCrystal.h>
LiquidCrystal lcd(19, 23, 18, 21, 5, 15);
String pass = "2491";
int Y = 32;
int X = 33;
int xval = 512;
int yval = 512;
int red = 12;
int green = 14;
int cursorloc = 1;
int temp = 0;
int can = 3;

void setup() {
  Serial.begin(9600);
  analogReadResolution(10);
  pinMode(red, OUTPUT);
  pinMode(green,OUTPUT);
  lcd.begin(16, 2);
  lcd.print("OYUN BASLADI");
  delay(2000);
  lcd.clear();
  lcd.setCursor(1, 0);
  lcd.print("****");
  lcd.setCursor(cursorloc, 1);
  lcd.print(".");
  lcd.setCursor(6, 0);
  lcd.print("Can: "+String(can));
}
 
void loop() {
  yval = analogRead(X);
  xval = analogRead(Y);
  if(yval == 0) //yukari
  {
    temp = temp - 1;
    if(temp<0) {temp = 0;}
    lcd.setCursor(cursorloc, 1);
    lcd.print(String(temp));
    Serial.println(String(temp));
    lcd.setCursor(6, 0);
    lcd.print("Can: "+String(can));
  }
  if(yval == 1023) //asagi
  {
    temp = temp + 1;
    if(temp>9) {temp = 9;}
    lcd.setCursor(cursorloc, 1);
    lcd.print(String(temp));
    Serial.println(String(temp));
    lcd.setCursor(6, 0);
    lcd.print("Can: "+String(can));
  }
  if(xval == 0) //onay
  {
    if (String(temp) == String(pass[cursorloc-1]))
    {
      lcd.setCursor(cursorloc, 1);
      temp = 0;
      lcd.print(" ");
      digitalWrite(green, HIGH);
      cursorloc = cursorloc + 1;
      lcd.setCursor(cursorloc, 1);
      lcd.print(".");
      can = 3;
      lcd.setCursor(6, 0);
      lcd.print("CAN: "+String(can));
    }
    else if (String(temp) != String(pass[cursorloc-1]))
    {
      digitalWrite(red, HIGH);
      can = can - 1;
      lcd.setCursor(6, 0);
      lcd.print("CAN: "+String(can));
      if (can == 0) 
      {Serial.println("FAIL");
      lcd.setCursor(6, 0);
      lcd.print("CAN: "+String(can));
      }
    }
  }

  delay(2000);
  digitalWrite(red, LOW);
  digitalWrite(green, LOW);
  lcdrender();
  //lcd.clear();
  //lcd.print("****");
  //delay(2000);
  //lcd.clear();
  //lcd.print("----");
  //delay(2000);
  //lcd.setCursor(0, 1);
  //lcd.setCursor(1, 2);
  //lcd.print("#");
  //delay(2000);
    //lcd.print("");
    if(cursorloc == 5)
    {
      while(1)
      {
        lcdrender();
        delay(10000);
      }
    }
}

void lcdrender()
{
  lcd.setCursor(1, 0);
  if(cursorloc == 1){  lcd.print("****");}
  if(cursorloc == 2){  lcd.print("2***");}
  if(cursorloc == 3){  lcd.print("24**");}
  if(cursorloc == 4){  lcd.print("249*");}
  if(cursorloc == 5){  lcd.print("2491");
  lcd.setCursor(1, 1);
      lcd.print("TEBRIKLER");}
}
esp:VIN
esp:GND.2
esp:D13
esp:D12
esp:D14
esp:D27
esp:D26
esp:D25
esp:D33
esp:D32
esp:D35
esp:D34
esp:VN
esp:VP
esp:EN
esp:3V3
esp:GND.1
esp:D15
esp:D2
esp:D4
esp:RX2
esp:TX2
esp:D5
esp:D18
esp:D19
esp:D21
esp:RX0
esp:TX0
esp:D22
esp:D23
lcd1:VSS
lcd1:VDD
lcd1:V0
lcd1:RS
lcd1:RW
lcd1:E
lcd1:D0
lcd1:D1
lcd1:D2
lcd1:D3
lcd1:D4
lcd1:D5
lcd1:D6
lcd1:D7
lcd1:A
lcd1:K
joystick1:VCC
joystick1:VERT
joystick1:HORZ
joystick1:SEL
joystick1:GND
rgb1:R
rgb1:COM
rgb1:G
rgb1:B
oled1:GND
oled1:VCC
oled1:SCL
oled1:SDA