Skip to content

🐦 A lightweight Arduino class for emulating LCD on your computer. Include this class, plug in your Arduino, start Serial Communication and, run!

Notifications You must be signed in to change notification settings

AbelWondafrash/LCD-Emulator-for-Arduino

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

LCD_Emulator_Arduino-side

🐦 A lightweight Arduino class for emulating LCD on your computer. Include this class, plug in your Arduino, start Serial Communication and, run!

Usage Example*

#include "LCDemulator.h"
LCDemulator lcd;

void setup() {
  Serial.begin (9600); // Required by LCD Emulator for Serial Communication
                       // Must match that of LCD Emulator Processing Side
  
  lcd.begin (20, 4);   // Set the Character LCD size matching the Processing side here
  lcd.setCursor (0, 1);
  lcd.print ("Hello Emulation!");
  
  delay (1000);
  
  lcd.clear ();
}

void loop() {
}
  • Requires LCD_Emulator_Processing-side to run on your computer. Grab it from here.

About

🐦 A lightweight Arduino class for emulating LCD on your computer. Include this class, plug in your Arduino, start Serial Communication and, run!

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages