Skip to main content

Project initialization

  1. Create a demo directory ~/demo in the ~/directory;
  2. Download the SDK (Click to download) and decompress it, and put the nrcAPI.h and libNexRob.a files into the demo directory;
  3. Create a new .cpp file demo.cpp in the demo directory;
  4. Import the basic library and nrcAPI.h header file, and create a new main function:
#include <iostream>
#include "nrcAPI.h"
using namespace std;
int main(){
}

Our project initialization is now complete.