Adding a counter and display

Hello everyone, I am working on my school project and I need to add counter and display, can anyone help me with it? the code you can find it below:

const int LED = 4;
const int LDR = A2;

void setup() {
Serial.begin(9600);
pinMode(LED, OUTPUT);
pinMode(LDR, INPUT);

}

void loop() {

int LdrStatus = analogRead(LDR);

if (LdrStatus <= 400)
{
digitalWrite(LED, HIGH);
Serial.println("(LED ON)Pizza Ready");
delay(250);

}
else
{
digitalWrite(LED, LOW);
Serial.println("Pizza getting ready");
delay(250);

}

}

Amar53:
I need to add counter and display, can anyone help me with it?

Probably.

But you'll need to explain a) what you want to count, and b) what sort of display you have in mind :wink:

Open-Smart Rich Shield display
(4 digits disply)

#include "Display.h"

void setup()

void loop()
display.show()

Amar53:
Open-Smart Rich Shield display
(4 digits disply)

#include "Display.h"

Most libraries come with examples: have you got the display working without worrying about trying to incorporate your own code?