Project initialization
- Create a demo directory
~/demo
in the~/
directory; - Download the SDK (Click to download) and decompress it, and put the nrcAPI.h and libNexRob.a files into the demo directory;
- Create a new .cpp file demo.cpp in the demo directory;
- 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.