Hi!
Just my first Arduino Mini and a FTDI!
I very happy!
Unfortunately I cant seem to get it work... ![]()
What I have done:
- Wired the mini as you see in the image below
- Installed the latest FTDI Drivers (http://www.ftdichip.com/Drivers/VCP.htm)
- In the IDE I selected COM3
- Selected Arduino Mini from the Boards in the IDE
- Uploading a simple blinking lights sketch for testing
void setup(){
pinMode(13,OUTPUT);
}
void loop(){
digitalWrite(13,HIGH);
delay(1000);
digitalWrite(13,LOW);
delay(1000);
}
But when pressing Upload in the IDE only the RX Led on the FTDI is
blinking very fast and nothing happens. IDE says uploading to board but that
doesnt changes...
The LED on pin 13 is powered so the board gets voltage.
What am Im doing wrong? ![]()
Thanks in advance!!