Skip to content

Instantly share code, notes, and snippets.

@buildcircuit
Created February 8, 2013 19:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buildcircuit/4741264 to your computer and use it in GitHub Desktop.
Save buildcircuit/4741264 to your computer and use it in GitHub Desktop.
#include <SoftwareSerial.h>
SoftwareSerial lcd(2,3);
//7- RX and 8- TX for connecting to Serial LCD
void setup()
{
Serial.begin(9600); // start serial monitor serial
lcd.begin(9600); // start lcd serial
lcd.print("buildcircuit.com");
}
void loop()
{
while(Serial.available()) // If serial data is available do this
lcd.print((char) Serial.read());
// lcd.print("hello");
// delay(1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment