initial set up question

Post here about your Arduino projects, get help - for Adafruit customers!

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
mlh681
 
Posts: 2
Joined: Sat Mar 22, 2014 3:15 pm

initial set up question

Post by mlh681 »

I have an UNO, and origionally set it up with 1.0 , That laptop is gone and I'm trying to set it up on a system using windows 8 .
I downloaded 1.0.5, and chose uno as the board, COM3 connected, and wrote the blink program to test it. The board accepts the new code with the tx/rx blinks, and the 13 pin LED stays on full time. Am I missing something simple here?

int ledpin = 13;
int ledPin = OUTPUT;
void setup ()
{
pinMode (ledPin, OUTPUT);

}
void loop ()
{ digitalWrite (ledPin, HIGH);
delay(1000);
digitalWrite (ledPin, LOW);
delay(1000);
}

mlh681
 
Posts: 2
Joined: Sat Mar 22, 2014 3:15 pm

Re: initial set up question

Post by mlh681 »

Nevermind, DUH! code error, not set up issues. Didn't capitalize the P on line one...... :oops: Thanks for looking.

Locked
Please be positive and constructive with your questions and comments.

Return to “Arduino”