Digital inputs and outputs

Hi Paul,

Your sketch looks ok (but you should always post your sketch inside code tags - look for the button with a # symbol).

To read the inputs, use digitalRead on each of your inputs. For each one, use Serial.print to send one character (eg. H) if the input is high and another (eg. L) If it is low. Use Serial.println to go to a new line.

Paul