ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

nyxaria's profile - activity

2023-02-28 15:35:12 -0500 marked best answer Generic Subscriber in ROS2

I am looking to replicate ROS1 behaviour where I could use ShapeShifter to subscribe to any topic, and not have to specify the message type. This code would run in C++.

I have found this Pull Request but it seems nothing has yet come of this.

Does anyone know if this is possible in ROS2 using C++? If not C++, then Python?

Many thanks

2021-09-28 23:09:35 -0500 received badge  Famous Question (source)
2020-09-14 11:03:00 -0500 received badge  Famous Question (source)
2020-09-07 20:51:02 -0500 received badge  Notable Question (source)
2020-08-18 05:33:36 -0500 received badge  Enthusiast
2020-08-17 22:13:42 -0500 received badge  Notable Question (source)
2020-08-17 17:15:20 -0500 received badge  Popular Question (source)
2020-08-17 11:48:33 -0500 asked a question ROS2 Build fails when including rclcpp

ROS2 Build fails when including rclcpp Hello, my ROS2 package won't compile when I include Starting >>> te

2020-08-17 08:37:00 -0500 received badge  Popular Question (source)
2020-08-17 08:22:47 -0500 commented answer Generic Subscriber in ROS2

Thank you!

2020-08-17 08:22:39 -0500 commented answer Generic Subscriber in ROS2

This is awesome, thanks! Such as a shame the C++ api is not there yet.

2020-08-17 05:38:48 -0500 received badge  Student (source)
2020-08-17 05:38:26 -0500 asked a question Generic Subscriber in ROS2

Generic Subscriber in ROS2 I am looking to replicate ROS1 behaviour where I could use ShapeShifter to subscribe to any t

2018-05-09 06:00:51 -0500 received badge  Famous Question (source)
2018-04-19 12:07:09 -0500 commented answer Subscribing to message and re-publishing only specific part, real time?

@gvdhoorn yes you are right ^^. I ended up adding that functionality after I got the re-publishing working, but you are

2018-04-19 09:25:56 -0500 answered a question Subscribing to message and re-publishing only specific part, real time?

I ended up basing my solution around @mohsen 's answer: Node file: #!/usr/bin/env python import rospy import importlib

2018-04-19 09:18:46 -0500 commented answer Subscribing to message and re-publishing only specific part, real time?

Thank you, I ended up using your solution as the basis for mine :). Have a great day!

2018-04-19 09:18:25 -0500 answered a question Subscribing to message and re-publishing only specific part, real time?

Thank you, I ended up using your solution as the basis for mine :). Have a great day!

2018-04-19 09:18:03 -0500 marked best answer Subscribing to message and re-publishing only specific part, real time?

Hi everyone,

I am currently working on sending the information from /joint_states to an Arduino, however the information in my message is too large to be sent, even after increasing the buffer.

My plan is to make a program that subscribes to joint_states, scrapes the position array and re-publishes on a different topic. I am new to ROS so I have no idea where to start.

Could someone give me a helping hand? Thank you so much in advance :).

2018-04-19 09:18:03 -0500 received badge  Scholar (source)
2018-04-19 09:17:49 -0500 commented answer Subscribing to message and re-publishing only specific part, real time?

Hi, thank you for your response :). I have tried to do it using this way but only realised what I did wrong once I compl

2018-04-19 09:15:27 -0500 received badge  Supporter (source)
2018-04-18 04:57:38 -0500 received badge  Notable Question (source)
2018-04-17 07:56:55 -0500 received badge  Popular Question (source)
2018-04-16 04:01:34 -0500 asked a question Subscribing to message and re-publishing only specific part, real time?

Subscribing to message and re-publishing only specific part, real time? Hi everyone, I am currently working on sending