vishwa — ESP32 simulation

sss

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

Components

Sketch code

#include <LiquidCrystal.h>
LiquidCrystal lcd(19, 18, 15, 14, 5, 4);
void setup(){
  lcd.begin(16,2);
}
void loop(){
  lcd.setCursor(4, 0);
  lcd.print("hello");
  lcd.setCursor(2, 1);
  lcd.print("world");
  delay(2000);
  lcd.clear();
  lcd.setCursor(4, 0);
  lcd.print("vishwa");
  lcd.setCursor(2, 1);
  lcd.print("ece");
  delay(2000);
  }

More projects by vishwesvaran52