Skip to content

πŸš€ Simple-RL ​

πŸ› οΈ Build the examples ​

  • Run the following command to build the project:

    bash
    bash scripts/ex/docker/run.bash --no-cache
    • arguments:
      • --helpΒ : Display help message and exit.
      • --no-cacheΒ : rebuild.

πŸ§ͺ Test ​

  • Run simulator script
    bash
    bash scripts/sim.bash

⚠️ Make Sure Auto Start the robot before RUN Simple-RL

  • Run Simple-RL process
    bash
    sudo ./examples/bin/Simple-RL
βœ… Robot ActionSitStanceControl ModeCommand
Keyboard KeyZXC
W – πŸ”Ό Forward
S – πŸ”½ Backward
A – ◀️ Left Turn
D – ▢️ Right Turn
Q – πŸ”„ Yaw Left
E – πŸ”ƒ Yaw Right

πŸš€ Deploy and Run in the real Robot ​

  • Connect your PC to the robot's Wi-Fi.

    πŸ“ Wi-Fi SSID: RBQ_xxxx (replace xxxx with the specific identifier of your robot's Wi-Fi).

  • Connect to Robot PC

    bash
    ssh rbq@192.168.0.10
  • Make the file directory

    bash
    mkdir -p /home/rbq/rbq_ws/rbq_gym/policy/rbq10
    mkdir -p /home/rbq/rbq_ws/examples/bin
  • Return to your PC and Copy the binary,policy file to the robot pc

    bash
    scp -r examples/bin/ rbq@192.168.0.10:~/rbq_ws/examples/
    scp -r rbq_gym/policy/rbq10/ rbq@192.168.0.10:~/rbq_ws/rbq_gym/policy/
  • Secure shell to the robot pc

    bash
    ssh rbq@192.168.0.10

⚠️ Make Sure Auto Start the robot before RUN Simple-RL

  • Run the process on robot pc
    bash
    sudo ~/rbq_ws/examples/bin/Simple-RL
βœ… Robot ActionSitStanceControl ModeCommand
Keyboard KeyZXC
W – πŸ”Ό Forward
S – πŸ”½ Backward
A – ◀️ Move Left
D – ▢️ Move Right
Q – πŸ”„ Yaw Left
E – πŸ”ƒ Yaw Right

⚠️ Software Version Compatibility ​

Make sure that the robot's onboard software version matches the software version installed on your development PC.

  • βœ… We recommend updating both environments to the latest official release before deployment. You can download the latest release from the official RBQ software repository.

This user manual is intended for RBQ users.