I have all 3 LEDs working now,
You are only setting one pin as output, for one thing.
for(int i = 0; i < 255; i++){
digitalWrite(0, i);
delay(50);
}
but there is some really weird things going on with the timing. this code basically only produces an on and off state every 30seconds or so:
That's what digitalWrite does. Turn the pin on or off.
sorry I meant the original project I was working on. I used your references to get it working. It was the new library that fixed it.
That's what digitalWrite does. Turn the pin on or off.
hah... yeah you are totally right, I was silly and had digital instead of analog.