Skip to content

Instantly share code, notes, and snippets.

View aserbremen's full-sized avatar

Andreas Serov aserbremen

  • University of Bremen
View GitHub Profile
@JADC362
JADC362 / ROS2DebugVSCode.md
Last active July 18, 2024 10:08
Debug ROS2 C++ node on VSCode (Ubuntu)

Debug ROS2 C++ node on VSCode (Ubuntu)

Description

This is a small tutorial on how to debug a ROS2 C++ node usign VSCode.

Requeriments

This implementation was done using:

@driftregion
driftregion / service_from_service.py
Created May 19, 2020 09:39
Calling a ROS2 service from the callback of another service
import time
from threading import Event
from example_interfaces.srv import AddTwoInts
import rclpy
from rclpy.node import Node
from rclpy.callback_groups import ReentrantCallbackGroup
from rclpy.executors import MultiThreadedExecutor, SingleThreadedExecutor