Thursday, April 5, 2012

LCD display (from lab 1)

  #include <LiquidCrystal.h>
  LiquidCrystal lcd(12, 11, 13, 10, 9, 8);
 
void setup() {
  Serial.begin(9600);
}

void loop () {

  lcd.begin(16,2);
  lcd.print("Hello BE470 Student!");
  delay(1000);
}

No comments:

Post a Comment