hrsajjad844
Published © MIT

LCD Display without Potentiometer and Resistor

You can be displayed in an LCD monitor without a potentiometer & Resistor. Keep watching this...

IntermediateShowcase (no instructions)28,885
LCD Display without Potentiometer and Resistor

Things used in this project

Story

Read more

Schematics

Pin Diagram

Here is the pin diagram of the circuit

Code

Code

C/C++
Here added project code.
#include <LiquidCrystal.h>
int Contrast = 60;
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);

void setup()
{
  analogWrite(6, Contrast);
  lcd.begin(16, 2);
}
void loop()
{
  lcd.setCursor(0, 0);
  lcd.print("Hello Friends");

  lcd.setCursor(0, 1);
  lcd.print("Eid Mubarak");
}

Credits

hrsajjad844

hrsajjad844

1 project • 16 followers

Comments