#include<LiquidCrystal.h>
LiquidCrystal lcd(12,11,10,9,8,7); //INITIALIZING LCD IN 4-BIT MODE
uint8_t heart[8] = {
0b00000,
0b01010,
0b11111,
0b11111,
0b11111,
0b01110,
0b00100,
0b00000,
};
void setup() {
lcd.createChar(3, heart);
lcd.begin(20, 4); // Initialize the LCD with 20 columns and 4 rows
lcd.clear(); // Clear the display
}
void loop() {
lcd.setCursor(0, 0); // Set the cursor position to the first row and first column
lcd.print("VERTEX\x03TECHNOLOGIES"); // Print "Line 1" to the first row
lcd.setCursor(0, 1); // Set the cursor position to the second row and first column
lcd.print("VERTEX\x03TECHNOLOGIES"); // Print "Line 2" to the second row
lcd.setCursor(0, 2); // Set the cursor position to the second row and first column
lcd.print("VERTEX\x03TECHNOLOGIES"); // Print "Line 2" to the second row
lcd.setCursor(0, 3); // Set the cursor position to the second row and first column
lcd.print("VERTEX\x03TECHNOLOGIES"); // Print "Line 2" to the second row
delay(1000); // Wait for 1 second
}