Hello,
I've recently received my drone and followed the instructions here to install the right software.
Even trying to run some simple code copy+pasted from this site I've encountered the following error when attempting to verify:
Arduino/libraries/CoDrone/CoDrone_send.cpp: In member function 'void CoDroneClass::triangle()':
Arduino/libraries/CoDrone/CoDrone_send.cpp:889:2: error: expected ';' before 'move'
move(2, 0,30,0,0);
^
exit status 1
Error compiling for board Rokit-SmartInventor-mega32_v2.
The following code produces this error, although it seems to be a problem with the library/built-in functions rather than the Arduino sketch itself, so this should probably work in someone else's install environment:
#include <CoDrone.h>
void setup() {
CoDrone.begin(115200);
CoDrone.AutoConnect(NearbyDrone);
}
void loop() {
// put your main code here, to run repeatedly:
}
I'm pretty sure I followed most of the software install instructions correctly, but if anyone has some ideas about what's gone wrong it would be much appreciated!