tron1-rl-deploy-ros
ROS Noetic RL deployment workspace for TRON1 robots — ONNX runtime, real-robot control, and sim-to-real transfer
File Explorer
- controller.png
- gazebo.png
- ipconfig.png
- launch.png
- rqt_gui.png
- simulator.gif
- ContactSensorInterface.h
- HybridJointInterface.h
- CMakeLists.txt
- package.xml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- encoder.onnx
- policy.onnx
- encoder.onnx
- policy.onnx
- params.yaml
- controllers.yaml
- ControllerBase.h
- PointfootController.h
- SolefootController.h
- WheelfootController.h
- ControllerBase.cpp
- PointfootController.cpp
- SolefootController.cpp
- WheelfootController.cpp
- CMakeLists.txt
- package.xml
- robot_controllers_plugins.xml
- joystick.yaml
- joystick_sim.yaml
- robot_hw.yaml
- PointfootHW.h
- RobotData.h
- RobotHW.h
- RobotHWLoop.h
- pointfoot_controller_sim.launch
- pointfoot_hw.launch
- pointfoot_hw_sim.launch
- PointfootHW.cpp
- pointfootNode.cpp
- RobotHW.cpp
- RobotHWLoop.cpp
- CMakeLists.txt
- package.xml
- LICENSE
- README.md
- README_cn.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cmake
View Details ▼
cmake
Cross-platform build automation system, that generates recipes for native build systems.
cmake {{path/to/project_directory}}
Generate a build recipe in the current directory with `CMakeLists.txt` from a project directory:
cmake --build {{path/to/build_directory}}
Use a generated recipe in a given directory to build artifacts:
cmake --install {{path/to/build_directory}} --strip
Install the build artifacts into `/usr/local/` and strip debugging symbols:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
tar
View Details ▼
tar
Archiving utility.
Often combined with a compression method, such as `gzip` or `bzip2`.
tar cf {{path/to/target.tar}} {{path/to/file1 path/to/file2 ...}}
[c]reate an archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{path/to/file1 path/to/file2 ...}}
[c]reate a g[z]ipped archive and write it to a [f]ile:
tar czf {{path/to/target.tar.gz}} {{[-C|--directory]}} {{path/to/directory}} .
[c]reate a g[z]ipped (compressed) archive from a directory using relative paths:
apt-get
View Details ▼
apt-get
Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.
sudo apt-get update
Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):
sudo apt-get install {{package}}
Install a package, or update it to the latest available version:
sudo apt-get remove {{package}}
Remove a package:
apt install
View Details ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
