Hello!
First post, so try to be nice
I got an Audrino Uno today, and have been playing about with it, been through some examples etc etc. However I am a bit stuck, and would be grateful if someone could help. I have a very simple circuit, which goes like this :
digital pin 1 -> 1kohm resistor
1kohm resistor -> LED
LED-> Ground pin on board
I simply want to have the LED "powered down", so, I wrot the following code and uploaded it :
int led = 1;
void setup() {Â Â Â Â Â Â Â Â
 pinMode(led, OUTPUT); Â
 digitalWrite(led, LOW);Â
 Serial.begin(9600);
}
void loop() {Â Â
     Â
}
But it does not work! If i take the Serial.begin out, then it does, but I will need this command as I will be logging data into the viewer once I get this sorted, can anyone tell me where I am going wrong?
Ryan