vamsivenkata
Published © GPL3+

Display script on a LCD

Display anything on your LCD!

BeginnerWork in progress496
Display script on a LCD

Things used in this project

Story

Read more

Schematics

connections

Code

Code

C/C++
Upload or paste code
#include <LiquidCrystal.h>

LiquidCrystal lcd(7, 8, 9, 10, 11, 12);
void setup(void)
{
 lcd.begin(16, 2);

}

void loop() {
// start serial port
  Serial.begin(9600);
 lcd.setCursor(0,0);
  lcd.print("hello world");
}

Credits

vamsivenkata
4 projects • 0 followers
Contact

Comments

Please log in or sign up to comment.