Posts Tagged ‘ christmas

Merry Christmas

Wow, not much posting lately.  And not even a fancy picture to go along with this one.  Amazing how doing non-digital work (household plumbing, wiring, lighting, etc) cuts into the digital ;)   But the posting will pick back up here soon, I’m sure.

A merry Christmas and a Happy New Year to everyone out there!

– Eric

UPDATE:  This is a complete lie:  I’ve already got a newer post.  After the movie we went to was sold out I suddenly had a few hours to myself before our dinner reservations.  So, Merry Christmas :)

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(){
}