No version for distro humble. Known supported distros are highlighted in the buttons above.
No version for distro jazzy. Known supported distros are highlighted in the buttons above.
No version for distro rolling. Known supported distros are highlighted in the buttons above.
![]() |
lunabotics repositoryapriltag digger drivetrain dumper gazebo_files ros_gz_description ros_gz_launch gstreamer isaac_ros_launch motor_control robot_description rovr_control rovr_interfaces |
|
Repository Summary
Checkout URI | https://github.com/gofirst-robotics/lunabotics.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-04-04 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Packages
Name | Version |
---|---|
apriltag | 0.0.1 |
digger | 0.2.0 |
drivetrain | 0.1.0 |
dumper | 0.0.1 |
gazebo_files | 0.0.1 |
ros_gz_description | 0.0.1 |
ros_gz_launch | 0.0.1 |
gstreamer | 0.0.1 |
isaac_ros_launch | 0.0.1 |
motor_control | 0.0.5 |
robot_description | 0.0.1 |
rovr_control | 0.1.0 |
rovr_interfaces | 0.0.1 |
README
Lunabotics
The official NASA Lunabotics GitHub repository for University of Minnesota Robotics.
graph LR
subgraph A[Operator Laptop]
B[RQT Camera Frontend]
J[joy_node]
end
subgraph C[Robot]
subgraph F[Nvidia Jetson AGX Orin]
G[motor_control]
H[GStreamer NVENC AV1 Encoding]
I[isaac_ros_nvblox]
L[ros2socketcan_bridge]
M[Nav2]
N[Subsystem ROS 2 Nodes]
O[rovr_control]
P[ZED ROS 2 Wrapper]
end
D[Arduino Microcontroller]
K[Limit Switches]
E[VESC Motor Controllers]
end
K --> D
O <-- Serial Bus --> D
H -- WiFi Connection --> B
L <-- CAN Bus --> E
P --> I
I -- Cost Map --> M
M --> O
J -- /joy --> O
M -- /cmd_vel --> N
G -- /CAN/can0/transmit --> L
L -- /CAN/can0/receive --> G
O -- /cmd_vel --> N
O -- ROS 2 Services --> N
N -- ROS 2 Services --> G
How to Run Inside Docker Container
How to Run Inside the Dev Container on Windows/Mac
Open vscode and install the "Dev Containers" extension. Then, with vscode open, press ctrl+shift+p to open the vscode command palette and type "Clone Repository in Container Volume". Select the "Dev Containers: Clone Repository in Container Volume" option, then select "Clone a repository from GitHub in a Container Volume". Search for and select our Lunabotics repository (the repository named "Lunabotics"). If you are cloning the repository directly into the container volume, you do NOT need to clone the repo locally, it will be automatically cloned into the repo.
After opening the container, you can run the following command in the Command Palette (Ctrl + Shift + P) to build the project: ``` Tasks: Run Build Task ``` Or, if your machine does not have an Nvidia GPU or you haven't set it up with [container-toolkit](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/latest/install-guide.html), run the following commands instead in the Command Palette (Ctrl + Shift + P): ``` Tasks: Configure Default Build Task Build No GPU Tasks ``` Optionally, traditional "colcon build" commands can be run in the vscode terminal instead of using the Command Palette commands above.
Updating the Dev Container for Windows/Mac
If you ever need to rebuild the remote container image, first update the x86_64 and aarch64 images: ``` cd ~/Lunabotics/src/isaac_ros/isaac_ros_common/docker docker build --build-arg="BASE_IMAGE=osrf/ros:humble-desktop" -f Dockerfile.user -t umnrobotics/devcontainer:x86_64.user . cd ~/Lunabotics/docker docker build --build-arg="BASE_IMAGE=umnrobotics/devcontainer:x86_64.user" -f Dockerfile.umn -t umnrobotics/devcontainer:x86_64.user.umn . docker push umnrobotics/devcontainer:x86_64.user.umn cd ~/Lunabotics/src/isaac_ros/isaac_ros_common/docker docker build --build-arg="BASE_IMAGE=arm64v8/ros:humble" -f Dockerfile.user -t umnrobotics/devcontainer:arm64.user . cd ~/Lunabotics/docker docker build --build-arg="BASE_IMAGE=umnrobotics/devcontainer:arm64.user" -f Dockerfile.umn -t umnrobotics/devcontainer:arm64.user.umn . docker push umnrobotics/devcontainer:arm64.user.umn ``` Then, run the following command with the devcontainer cli installed: ``` cd ~/Lunabotics docker pull umnrobotics/devcontainer:x86_64.user.umn docker pull umnrobotics/devcontainer:arm64.user.umn docker manifest rm umnrobotics/devcontainer:latest docker manifest create umnrobotics/devcontainer:latest --amend umnrobotics/devcontainer:arm64.user.umn --amend umnrobotics/devcontainer:x86_64.user.umn docker manifest push umnrobotics/devcontainer:latest docker buildx create --use devcontainer build --push true --workspace-folder . --platform="linux/amd64,linux/arm64" --image-name "umnrobotics/ros:ros_devcontainer" ```
How to Run Inside the ISAAC ROS Container on Linux/Jetson
First, you will need to log in to Nvidia NGC and get an API Key here: https://org.ngc.nvidia.com/setup Then install Nvidia ngc CLI and make sure it is present in path: https://org.ngc.nvidia.com/setup/installers/cli Follow the instructions on the website to install and configure ngc. Test the ngc installation by running `ngc` in a new terminal. If it doesn't work, try adding `echo "export PATH=\"\$PATH:$(pwd)/ngc-cli\"" >> ~/.bash_profile && source ~/.bash_profile` to your `~/.bashrc` file. Then log in to nvcr with the following command: ``` docker login nvcr.io Username: $oauthtoken Password:
Gazebo Installation & Resources
Install Gazebo Fortress by running: `sudo apt-get install ros-humble-ros-gz` More info [here](https://gazebosim.org/docs/garden/ros_installation). Remember that we are using ROS 2 Humble. Instructions for building the ROS bridge (ros_gz) can be found [here](https://github.com/gazebosim/ros_gz/tree/humble#from-source). Information about ROS types -> gazebo types can be found [here](https://github.com/gazebosim/ros_gz/blob/ros2/ros_gz_bridge/README.md)
Running the Gazebo Simulation
To run the Gazebo simulation: ``` colcon build --symlink-install --packages-up-to ros_gz_launch source install/setup.bash ros2 launch ros_gz_launch UCF_field.launch.py ``` Then to control the robot, you will need to run: ``` ros2 run teleop_twist_keyboard teleop_twist_keyboard ``` in another terminal to control the robot with your keyboard. Alternatively, you can run these nodes: ``` ros2 run joy joy_node --ros-args --params-file config/joy_node.yaml ros2 run rovr_control main_control_node ``` to control the robot using a gamepad and our button bindings assigned in the main_control_node.
How to load the CAN modules at startup on Nvidia Jetson
Follow [these](https://docs.nvidia.com/jetson/archives/r36.4/DeveloperGuide/HR/ControllerAreaNetworkCan.html) instructions to enable CAN communication on Nvidia Jetson Orin. 1: Put the following in the `modules.conf` file in `/etc/modules-load.d/` ``` # Load the CAN bus kernel modules can can_raw mttcan #eof ``` 2: Find the file `/etc/modprobe.d/denylist-mttcan.conf` and delete it if it exists (The filename might also be `/etc/modprobe.d/blacklist-mttcan.conf`) 3: Make a script called "can_startup.sh" in the `/root` directory of the system, with the following contents: ``` #! /usr/bin/sh sudo ip link set can0 up type can bitrate 500000 sudo ip link set can1 up type can bitrate 500000 ``` 4: Run the command "sudo crontab -e" and add this line to the bottom of the file that appears: ``` @reboot sleep 5 && echo 'robot' | sudo -S sh can_startup.sh 2>&1 | logger -t mycmd ``` And that should work! If it doesn't and you need to read the log output of the crontab, use this command: ``` sudo grep -a 'mycmd' /var/log/syslog ```
Gstreamer Server/Client Instructions
To start gstreamer client make sure to add the deepstream layer to the docker layers To start the gstreamer client run the following commands: ```bash colcon build --symlink-install --packages-up-to gstreamer source install/setup.bash rqt --force-discover ``` To start the gstreamer server run the following commands: ```bash colcon build --symlink-install --packages-up-to gstreamer source install/setup.bash ros2 run gstreamer server_node ```
CONTRIBUTING
No CONTRIBUTING.md found.
No version for distro noetic. Known supported distros are highlighted in the buttons above.
No version for distro ardent. Known supported distros are highlighted in the buttons above.
No version for distro bouncy. Known supported distros are highlighted in the buttons above.
No version for distro crystal. Known supported distros are highlighted in the buttons above.
No version for distro eloquent. Known supported distros are highlighted in the buttons above.
No version for distro dashing. Known supported distros are highlighted in the buttons above.
No version for distro galactic. Known supported distros are highlighted in the buttons above.
No version for distro foxy. Known supported distros are highlighted in the buttons above.
No version for distro iron. Known supported distros are highlighted in the buttons above.
No version for distro lunar. Known supported distros are highlighted in the buttons above.
No version for distro jade. Known supported distros are highlighted in the buttons above.
No version for distro indigo. Known supported distros are highlighted in the buttons above.
No version for distro hydro. Known supported distros are highlighted in the buttons above.
No version for distro kinetic. Known supported distros are highlighted in the buttons above.
No version for distro melodic. Known supported distros are highlighted in the buttons above.