Merry Christmas!

DSC05512

…and a happy new year, from my family to yours.

Arduino + Electronic Brick Chassis V1.1 + Electronic Brick LCD 16*2 + below code = above image.

// It's an Arduino LCD Christmas
// AK Eric - 2009-12-24
#include <LiquidCrystal.h>

LiquidCrystal lcd(10, 11, 12, 13, 14, 15, 16);

void setup(){
    lcd.begin(16, 2);
    lcd.clear();
    lcd.print("MERRY CHRISTMAS!");
    lcd.setCursor(0,1);
    lcd.print(" www.AKEric.com");     
}

void loop(){
}
Got the Electronic Brick
Arduino talks to Processing, Python...
Comment are closed.