Big characters lcd 20x4 display

So i actually already have a code for my project but i would like to add bigger numbers.
If anyone would be able te help it would really be appreciated :slight_smile:

Code:
#include <Wire.h> //Bibliotheek om te werken met I²C
#include <LiquidCrystal_I2C.h> //Bibliotheek om LCD-functies op te roepen
//Moet je 1X toevoegen aan Arduino-SDK
int hPbutton =2;
int hMbutton =4;
int sPbutton =12;
int sMbutton =13;
int buttonPushCounter = 0;
int countA = 0;
int countB= 0;
LiquidCrystal_I2C lcd(0x27,16,2); //LCD-adres voor 16X2 display

void setup()
{
lcd.begin (20,4);
pinMode(hPbutton, INPUT);
pinMode(hMbutton, INPUT);
pinMode(sPbutton, INPUT);
pinMode(sMbutton, INPUT);
lcd.backlight();
lcd.init();
lcd.setCursor(2,1);
lcd.print("Starting Arduino");
delay(4000);
lcd.clear();
lcd.setCursor(7,1);
lcd.print("Ready.");
delay(1500);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Hull:");
lcd.setCursor(0,2);
lcd.print("Shields:");

}
void loop(){
if (digitalRead(hPbutton) == HIGH){
lcd.setCursor(5,0);
lcd.print(" ");
lcd.setCursor(6,0);
lcd.print(++countA);
while(digitalRead(hPbutton) == HIGH);
}
if (digitalRead(hMbutton) == HIGH){
lcd.setCursor(5,0);
lcd.print(" ");
lcd.setCursor(6,0);
lcd.print(--countA);
while(digitalRead(hMbutton) == HIGH);
}
if (digitalRead(sPbutton) == HIGH){
lcd.setCursor(8,2);
lcd.print(" ");
lcd.setCursor(9,2);
lcd.print(++countB);
while(digitalRead(sPbutton) == HIGH);
}
if (digitalRead(sMbutton) == HIGH){
lcd.setCursor(8,2);
lcd.print(" ");
lcd.setCursor(9,2);
lcd.print(--countB);
while(digitalRead(sMbutton) == HIGH);
}
}

What do you mean by "bigger numbers"?

Like this?

OK, first things first.

You need to go and read the forum instructions so that you can go back and modify your original post (not re-post it) - using the "More -> Modify" option below the right hand corner of your post - to mark up your code as such using the "</>" icon in the posting window. Just highlight each section of code (or output if you need to post that) from the IDE and click the icon.

In fact, the IDE itself has a "copy for forum" link to put these markings on a highlighted block for you so you then just paste it here in a posting window. But even before doing that, don't forget to use the "Auto-Format" (Ctrl-T) option first to make it easy to read. If you do not post it as "code" it can easily be quite garbled and is always more difficult to read due to the font.

It is inappropriate to attach it as a ".ino" file unless it is clearly too long to include in the post proper. People can usually see the mistakes directly and do not want to have to actually load it in their own IDE. And even that would also assume they are using a PC and have the IDE running on that PC.

Also tidy up your blank space. Do use blank lines, but only single blanks between complete functional blocks.