Problem with physicalpixel example.

Hi,

I am new to this forum, so hi all.

I have a problem with the physicalpixel example sketch, mainly that I don't seem to be able to make it work.
I have a Duemilanove board with 328. When I type 'H' or 'L' from the serial monitor, nothing happens.
I have tested that I can turn the led on, I have tested that I can read serial produced from the arduino, but nothing I have tried seems to make the led turn on via serial.

Can anyone help please.

Thanks

Make sure the baud menu near the bottom right corner of Serial Monitor is set to "9600", to match the configuration of the port in the sketch:

Serial.begin(9600);

Check also how the line endings are configured on the serial monitor. You might need to press the return key to send what you have just typed.

Check also how the line endings are configured on the serial monitor.

The sketch is written so it will work with any line ending setting.

You might need to press the return key to send what you have just typed.

Good thinking!

(deleted)