Arduino/genuino uno Compile error_inventor kit Orion board


#1

I am trying to compile and upload code.

As per http://learn.makeblock.com/en/learning-arduino-programming/
I installed Makeblock_Driver_Installer_for_window.zip and Makeblock-Libraries-master.zip.

Please see the below in my computer.

However, compiling fails and fails…
Error is
"exit status 1
board Arduinno/Genuino Uno compile Error"

What is the problem??? or any advice ?


#2

Hi funrobot,

Which example program you have test?
Besides, which version of the Arduino software do you use?


#3

Which example program you have test?
Explore Electronics Project 1: Distance Display

which version of the Arduino software do you use?
Arduino 1.8.3

Could you advise? Thank you.


#4

Hi funrobot,

Do you use the example program in this link?
If yes, it is suggested to compile the program online through the web browser.

If you want to upload it through the Arduino software installed on your Computer, you may need modify this program refer to the example program “UltrasonicSensorTest” in Makeblock library. You may try following program:
#include “MeOrion.h”

MeUltrasonicSensor ultraSensor(PORT_4);
Me7SegmentDisplay disp(PORT_6);
void setup()
{

}

void loop()
{
int temp = ultraSensor.distanceCm();
disp.display(temp);
delay(100); // the minimal measure interval is 100 milliseconds

}


#5

no problem with mBlock
no problem with Arduino UNO board

However,

  1. compiling the program online through the web browser ; An error occurred while connecting to your device. Please try again.
  2. uploading code through the Arduino software installed on my Computer ; still exit status 1 errror

I don’t know how to do…


#6

In addition,
NO PROBLEM with Ultrasonic Sensor Test…

NO PROBLEM with Segment Serial Display Test…


Distance display.ino Still PROBLEM…


#7

Here is my test with arduino 1.8.1


I attach the zip file for you, you may unzip it and test the same program have a check.distanceDisplay.zip (739 Bytes)


#8

Thank you for your support

  1. compiling the program online through the web browser ; Now, successful…
  2. uploading code through the Arduino software installed on my Computer ; still exit status 1 errror, In my guess, the connection between my laptop and Orion board is not good. Recently, my laptop is too slow… :disappointed_relieved:

Please see my blog (http://blog.naver.com/funrobot) related to Makeblock even Korean.


#9

Wow, you really have done a lot of works with our robot kits, Nice work!
Thanks for sharing it!


#10