New Library for Makeblock electronic modules and graphic programming tool


#1

Dear all

We update our Arduino library for Me-Series electronic modules, the new library got some big improvement compare with the old version. you can download the library here

Besides, we also release a graphic programming IDE based on Ardublock, Ardublock is a popular graphic programming IDE developped by David Li in Xinchejian, you can find source code of Ardublock here. we also made a installation package for easyily installing Ardublock.

Any feedback is welcome.:slight_smile:


#2

Getting Started with ArduBlock for Makeblock Electronic Modules


#3

All the examples that has #include Servo.h make a compiler error because Makeblock.h already define some types name like in Servo.h, so the solution is to comment or delete this line:

#include <Makeblock.h>
#include <Arduino.h>
#include <SoftwareSerial.h>
//#include <Servo.h>       //<- THIS makes compiler error
#include <Wire.h>
#include <Serial.h>

#4

Hi Jose,

Thanks for you suggestions, we have corrected the mistakes.

Thanks for your strong support!


#5