Duplicated the sample app here: http://learn.makeblock.cc/wp-content/uploads/2015/05/1-line.png
Uploaded to mbot using the serial cable.
Nothing happens.
mBlock 3.3.2
updated firmware
The c code looks suspiciously thin:
#include <Arduino.h>
#include <Wire.h>
#include <SoftwareSerial.h>
#include <MeMCore.h>
double angle_rad = PI/180.0;
double angle_deg = 180.0/PI;
void setup(){
}
void loop(){
_loop();
}
void _delay(float seconds){
long endTime = millis() + seconds * 1000;
while(millis() < endTime)_loop();
}
void _loop(){
}
Is the mBlock programming supposed to with the mBot, or do I need to do the programming only in c?