using a parallel LCD with Arduino Punk Console

attrib:
Is it possible to get the Atari Punk Console to work with a parellel LCD?
Can someone help me, or point me to the right direction?

The code you nabbed on the internet is quite modular and clean. To make it work with you LCD display, you need to rewrite the following functions:

void StartupMessage()
void clearLCD()
void updateDisplay()

Also, in setup() you can delete the line

Serial.begin(9600);

but you need add the necessary initialisation code for your display instead.

Once you did that, all should work. If you're unsure what exactly to do, start with adapting the function StartupMessage() with the code you have that works on your display.

Good luck,

Korman