Navigation

    Robolink logo
    • Register
    • Login
    • Search
    • [[global:header.categories]]
    • [[global:header.recent]]
    • [[global:header.tags]]
    • [[global:header.popular]]
    • [[global:header.users]]
    • [[global:header.groups]]
    1. Home
    2. chnadell
    3. Posts
    As of September 2021, we have moved technical support to Robolink Help

    Welcome to the Robolink Community forum!

    You can post here to interact with others in the Robolink community. We're checking it weekly, and we'll respond to some messages. If you're looking for technical support, head over to Robolink Help.
    C
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 2
    • Groups 0

    Posts made by chnadell

    • RE: CoDrone_send.cpp error

      I should also mention:
      macOS 10.13.6
      Arduino 1.8.5
      rokit by ROBOLINK version 1.0.3

      posted in CoDrone Troubleshooting
      C
      chnadell
    • CoDrone_send.cpp error

      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!

      posted in CoDrone Troubleshooting
      C
      chnadell