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

Paulo's profile - activity

2020-03-31 08:09:33 -0500 received badge  Famous Question (source)
2019-11-11 09:22:13 -0500 received badge  Notable Question (source)
2019-06-24 13:42:47 -0500 received badge  Supporter (source)
2019-06-24 13:41:50 -0500 marked best answer How to start creating a package to read a signal and publish it in a ROS network

Hi,

I am new to ROS and programing and I would like some advices to develop a ROS package/node that reads a radio signal, so far I can only access it from its IPs address from a browser like a internet wifi modem, and pusblish it so I could use it in a ROS network.

Any Advices, papers, links, to start this journey ???

Thanks a lot in advance.

2019-06-24 13:41:50 -0500 received badge  Scholar (source)
2019-06-18 09:53:00 -0500 commented answer How to start creating a package to read a signal and publish it in a ROS network

Hello, it helped me indeed. Thanks. I am able to get my data through a PHP script now. Is it possible to use it with R

2019-06-15 07:45:42 -0500 received badge  Popular Question (source)
2019-06-13 10:52:09 -0500 commented answer How to start creating a package to read a signal and publish it in a ROS network

Nice . I'll check that as well. Thank you

2019-06-13 10:51:05 -0500 commented answer How to start creating a package to read a signal and publish it in a ROS network

Thanks for your reply. That's a good start and I'll take a look :)

2019-06-13 09:25:18 -0500 commented question How to start creating a package to read a signal and publish it in a ROS network

Hi. It's basically a rocket m900, one access point and one client connect via wifi. I would like to monitor it and send

2019-06-13 09:01:59 -0500 asked a question Publishing a radio signal into a ROS network

Publishing a radio signal into a ROS network Hi, I am new to ROS and programing and I would like some advices to deve

2019-06-13 08:59:35 -0500 asked a question How to start creating a package to read a signal and publish it in a ROS network

How to start creating a package to read a signal and publish it in a ROS network Hi, I am new to ROS and programing an

2017-10-04 12:53:01 -0500 received badge  Famous Question (source)
2017-10-04 12:53:01 -0500 received badge  Notable Question (source)
2017-04-18 21:45:48 -0500 received badge  Student (source)
2017-04-18 21:45:17 -0500 received badge  Popular Question (source)
2017-03-09 15:38:48 -0500 received badge  Enthusiast
2017-03-04 19:31:22 -0500 asked a question Subscribe /ar_pose_marker in matlab

Hello, I am having a problem with matlab and ROS. I would like to subscribe /ar_pose_marker in matlab but i am getting a error

Thats the Matlab code:

clear,close, clc;

%addpath(genpath('/home/Downloads/email'));
%addpath('/home/Downloads/email');

global pos;
 setenv('ROS_MASTER_URI','http://paulo-Inspiron-7537:11311')
 setenv('ROS_IP','192.168.1.2')

rosinit('http://paulo-Inspiron-7537:11311','NodeHost','192.168.1.2','NodeName','/teste')
camera = rossubscriber('/ar_pose_marker',@getPose);

Thats the error that I get:

Initializing global node /teste with NodeURI http://192.168.1.2:34676/
Error using qr_pose (line 13)
Failed to create a subscriber with topic name /ar_pose_marker and type ar_track_alvar_msgs/AlvarMarkers.

And if I try to do rostopic echo /ar_pose_marker on matlab I also get these error:

>> rostopic echo /ar_pose_marker
Failed to create a subscriber with topic name /ar_pose_marker and type ar_track_alvar_msgs/AlvarMarkers.

There is no problem in ROS Linux terminal, the rostopic echo is working and also a Subscribe code that I made on cpp.

Does anybody have a clue ? Edit: I am using Kinetic on Ubuntu 16. Other things are working on matlab like subscribing /turtle1/pose Thanks for your help, I really appreciate it !!!