Skip to main content Link Menu Expand (external link) Document Search Copy Copied

void update()

Updates the position of the robot. This function must be put inside an infinite loop in its own thread.

Example

thread positionerThread = thread([](){
    while(true){
        positioner.update();
    }
});