system
September 24, 2014, 6:37pm
1
hi all,
I buy my first arduino uno and after unboxing I have my first problem !
I wanted to upload the blink sketch from the exemple. But the led blink is not correctly!
As I am not good on english explication I upload a video on youtube. - YouTube
I use arduino on mac 10.9
JimboZA
September 24, 2014, 6:46pm
2
I know you said you used the example code, but can you post it anyway, exactly as uploaded?
Also maybe try a loose LED on another pin? (Don't forget the series resistor to limit the current.)
system
September 24, 2014, 6:49pm
3
I test with a basic code
int led = 13;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}
system
September 25, 2014, 12:14am
4
OK after multiple test I found this :
The sketch run correctly only if arduino is pugged on external source or on windows via vmware
Abnormal executing from any sketch and any pin If connected on my mac. Even close arduino app and unplug/plug arduino
Impossible to upload skech via windows (vmware) error avrdude: stk500_getsync(): not in sync: resp=0x00
system
September 26, 2014, 11:55am
5
My problem is resolve after formatting !