This tutorial clears minor or critical faults, if any, of the connected robot. 
- Copyright
- Copyright (C) 2016-2025 Flexiv Ltd. All Rights Reserved. 
- Author
- Flexiv
 
#include <spdlog/spdlog.h>
 
#include <iostream>
#include <string>
#include <thread>
 
using namespace flexiv;
 
void PrintHelp()
{
    
    std::cout << "Required arguments: [robot_sn]" << std::endl;
    std::cout << "    robot_sn: Serial number of the robot to connect. Remove any space, e.g. Rizon4s-123456" << std::endl;
    std::cout << "Optional arguments: None" << std::endl;
    std::cout << std::endl;
    
}
 
int main(int argc, char* argv[])
{
    
    
    
    if (argc < 2 || 
rdk::utility::ProgramArgsExistAny(argc, argv, {
"-h", 
"--help"})) {
 
        PrintHelp();
        return 1;
    }
    
    std::string robot_sn = argv[1];
 
    
    spdlog::info(
        ">>> Tutorial description <<<\nThis tutorial clears minor or critical faults, if any, of "
        "the connected robot.\n");
 
    try {
        
        
        
        rdk::Robot robot(robot_sn);
 
        
        
        
        if (robot.fault()) {
            spdlog::warn("Fault occurred on the connected robot, trying to clear ...");
            
            if (!robot.ClearFault()) {
                spdlog::error("Fault cannot be cleared, exiting ...");
                return 1;
            }
            spdlog::info("Fault on the connected robot is cleared");
        } else {
            spdlog::info("No fault on the connected robot");
        }
    } catch (const std::exception& e) {
        spdlog::error(e.what());
        return 1;
    }
 
    return 0;
}