Hi!
I want to use Arduino c for programming my mbot.
I have installed the lastest Arduino from https://www.arduino.cc/en/main/software and have donwload the libraries from https://github.com/Makeblock-official/Makeblock-Libraries and have add the libraries over Sketch-> Include Library-> Add .ZIP Library.
I have select the board Arduino uno and the port.
When I press the upload button I will get the following message:
Der Sketch verwendet 4014 Bytes (12%) des Programmspeicherplatzes. Das Maximum sind 32256 Bytes.
Globale Variablen verwenden 688 Bytes (33%) des dynamischen Speichers, 1360 Bytes für lokale Variablen verbleiben. Das Maximum sind 2048 Bytes.
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 1 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 2 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 3 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 4 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 5 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 6 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 7 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 8 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 9 of 10: not in sync: resp=0x5c
avrdude: stk500_recv(): programmer is not responding
avrdude: stk500_getsync() attempt 10 of 10: not in sync: resp=0x5c http://www.arduino.cc/en/Guide/Troubleshooting#upload
I use the following Code:
#include <MeMCore.h>
MeRGBLed led;
void setup() {
// put your setup code here, to run once:
led.setpin(13);
}
void loop() {
// put your main code here, to run repeatedly:
led.setColorAt(0,0,0,255);
led.show();
delay(500);
}
On an other Computer all is fine. the only different I notice is that I have no Board Arduino/Genuino Uno. I can only choose Arduino Uno. Maybe this is the Problem but I don’t know how I can install the Board Arduino/Genuino Uno.
Hope somebody can help me.
kindly regards