:-/
Wow...i think its just the fact that english is not my native language.
I cant understand what the ' answer' is that you both want...
The answer about the wiring is right there, on the picture... :-/
It would never be connected the GND pin would it ? So its either 5v or 3v, isnt it ?
----------------------------------------------------------------------------
Anyway, i ' fixed' the problem by using another code. The new code is alot more simple but the downside is that it isnt as smooth as the first one i used. I inserted the code below, as it might be handy for others int he future...
I dont think i will be coming back to this board with another question as i find the reactions of certain users are ' asking about the obvious' and not very friendly....thanks for the help, or trying to help though.
Good luck
void setup(){
pinMode(2, OUTPUT);
pinMode(3, OUTPUT);
pinMode(4, OUTPUT);
pinMode(5, OUTPUT);
pinMode(6, OUTPUT);
pinMode(7, OUTPUT);
pinMode(8, OUTPUT);
}
void loop(){
digitalWrite(3, LOW);
delay(80);
digitalWrite(2, HIGH);
delay(80);
digitalWrite(4, LOW);
delay(80);
digitalWrite(3, HIGH);
delay(80);
digitalWrite(5, LOW);
delay(80);
digitalWrite(4, HIGH);
delay(80);
digitalWrite(6, LOW);
delay(80);
digitalWrite(5, HIGH);
delay(80);
digitalWrite(7, LOW);
delay(80);
digitalWrite(6, HIGH);
delay(80);
digitalWrite(8, LOW);
delay(80);
digitalWrite(7, HIGH);
delay(80);
digitalWrite(7, LOW);
delay(80);
digitalWrite(8, HIGH);
delay(80);
digitalWrite(6, LOW);
delay(80);
digitalWrite(7, HIGH);
delay(80);
digitalWrite(5, LOW);
delay(80);
digitalWrite(6, HIGH);
delay(80);
digitalWrite(4, LOW);
delay(80);
digitalWrite(5, HIGH);
delay(80);
digitalWrite(3, LOW);
delay(80);
digitalWrite(4, HIGH);
delay(80);
digitalWrite(2, LOW);
delay(80);
digitalWrite(3, HIGH);
delay(80);
}