harishh — ESP32 simulation

An interactive ESP32 circuit simulation you can run free in your browser on Velxio, by mashiyo272.

Components

Sketch code

#include <LiquidCrystal.h>

// RS, E, D4, D5, D6, D7
LiquidCrystal lcd(23, 22, 21, 19, 18, 5);

void setup() {
  lcd.begin(16, 2);
}

void loop() {

  // Welcome Message
  lcd.clear();
  lcd.setCursor(5, 0);
  lcd.print("Hello");
  delay(3000);

  // Greeting
  lcd.clear();
  lcd.setCursor(1, 0);
  lcd.print("Good Afternoon");
  delay(3000);

  // Student 1
  lcd.clear();
  lcd.setCursor(4, 0);
  lcd.print("Harish M");
  lcd.setCursor(4, 1);
  lcd.print("ECE Dept");
  delay(3000);

  // Student 2
  lcd.clear();
  lcd.setCursor(3, 0);
  lcd.print("Mashiyo V");
  lcd.setCursor(4, 1);
  lcd.print("ECE Dept");
  delay(3000);

  // Student 3
  lcd.clear();
  lcd.setCursor(4, 0);
  lcd.print("Naresh S");
  lcd.setCursor(4, 1);
  lcd.print("ECE Dept");
  delay(3000);
}

More projects by mashiyo272