arduino uno: compilation failed. please report this issue on our forum.

hi,

i have just started learning arduino and when i try to vertify my script it says: Compilation failed. Please report this issue on our forum. so here i am.

the code i was trying to wertify was a simple blink code:

void setup () {
pinMode(LED_BUILTIN, OUTPUT);
}

void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(100);
digitalWrite(LED_BUILTIN, LOW);
delay(100);
}

when i try to upload it simply says: open/mnt/create-efs/website/41/51/4151676578fbb4480ace502481e6f1d3:cpmanasse/compilations/firstscript.hex: no such file or directory.

i hope some one can help me with this problem.

Welcome.

The sketch is okay. It seems that your Arduino IDE can not run very well.

If you have a Windows 10 operating system, preferably without Java installed, download the newest Arduino IDE (1.8.5 at this moment from here: https://www.arduino.cc/en/Main/Software) and install it in a normal way, then it should work.

I think the Arduino IDE via the Windows Store has version 1.8.6.

There is a way to install it in a "portable" way. That might help if you want to keep the Arduino IDE locally.

Tell us how you have installed it.

There is an other option. At Tinkercad.com, there is a section for "Circuits" where you can select an Arduino Uno board and select "Text" for the code and run your sketch. Then you will see the led blinking.

I suspect that this has to be moved to the 'create' section.

Hi
I have the same problem.
I'm using arduino web editor for Mac

The code is:
void setup()
{
pinMode(13, OUTPUT) ;

}
void loop ()
{
digitalWrite(13, LOW);
delay(500);
digitalWrite(13, HIGH);
delay(500);

}

Thanks in advance

I have the same problem.
I tried on Mac and on Google Chrone book.

I'm sure that my code is correct.

There must be something wrong with the server on Arduino create.

Any opinion on this??

Thank you

Perhaps it was not well tested with Mac or Chrome Book.
I have tried the Arduino Create a few times with Windows 10. It worked, but I returned to the downloaded program.

Hello!
I've exactly the same issue with my Windows 10 and web editor.

The issue is also that I can't download the app from Microsoft Store! Are 2 days that looks like the app IDE app is not available for a download!

I'm stucked!

Pls help me, can you download the IDE app for Windows 10 from the store?

Regards

Use the installer, or download the zip-file and unpack it and run the Arduino IDE from there (you could make a shortcut for the Desktop). When using the zip-file, you might have to install the drivers (also in the zip-file).

Hello all, I suspect most of you have been affected by a bug we discovered that prevented new user to compile. Please follow the discussion here: Compilation failed. Please report this issue on our Forum - June 2018 - Web Editor - Arduino Forum

Hi @lkitre @GarroteG @cpmanasse @Taroz04, the problem should be fixed now!