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

Joseph Landau's profile - activity

2021-12-19 23:38:49 -0500 received badge  Great Answer (source)
2021-03-18 15:23:05 -0500 received badge  Famous Question (source)
2019-09-06 08:53:35 -0500 received badge  Notable Question (source)
2016-12-11 09:35:33 -0500 received badge  Famous Question (source)
2016-06-16 10:03:37 -0500 received badge  Famous Question (source)
2016-04-13 09:18:03 -0500 received badge  Notable Question (source)
2015-12-31 13:29:29 -0500 received badge  Notable Question (source)
2015-12-08 05:24:21 -0500 received badge  Popular Question (source)
2015-12-08 00:59:43 -0500 asked a question where to raise documentation issues?

When a problem such as a broken link is found in the ROS documentation (for instance, the link for "move_base_msgs/MoveBaseActionGoal" on the page http://wiki.ros.org/move_base , where should it be reported?

2015-11-26 12:07:06 -0500 received badge  Popular Question (source)
2015-11-26 01:29:53 -0500 received badge  Enthusiast
2015-11-25 19:16:14 -0500 asked a question Where is documentation for Actionlib Client?

The tutorial page for Actionlib Client has two references to further documentation, both of which have a broken link.

"Documentation of all the constructor options and available functions can be found in the ROSLIB.ActionClient docs."

"The ROSLIB.Goal docs describe all the constructor options and functions available. "

Can anyone tell me where this documentation is? And, how do I raise this sort of issue?

2015-11-12 15:40:21 -0500 received badge  Notable Question (source)
2015-11-12 10:04:53 -0500 received badge  Popular Question (source)
2015-09-28 23:35:49 -0500 received badge  Editor (source)
2015-09-28 23:29:24 -0500 asked a question Rosbridge app works on Chrome but not Firefox or Opera

I have a webpage that works beautifully on Chrome, but on Firefox, rosbridge does not connect. No error, no message, only silence. The code is the usual:

ros = new ROSLIB.Ros({
url: robotUrl
});''

I have tried with and without ssl. It feels like I have overlooked something obvious, but what?

2015-07-29 10:56:53 -0500 received badge  Popular Question (source)
2015-05-12 19:10:12 -0500 commented answer How to get error information using roslibjs

In that case, I get: "Event {path: Array[0], cancelBubble: false, returnValue: true, srcElement: WebSocket, defaultPrevented: falseā€¦}" This is clickable and expands to show lots of properties. Incidentally, the debugger shows that roslib.js (line 651?) has the message. Or, at least, a message.

2015-05-12 12:36:31 -0500 commented answer How to get error information using roslibjs

When I concatenate the error variable (here's the code): "console.log ('Error connecting to websocket server: ' + error);", the result is: "Error connecting to websocket server: [object Event]" Looks like the argument called error is an Event rather than a string?

2015-05-12 12:17:19 -0500 commented answer rosbridge cannot connect to secure websocket, timed out error

No, I was using ROS hydro. I have the impression that the behavior we noted was coming from the browser, not from ROS. However, I have not tested that. Sorry it didn't help.

2015-05-11 20:12:45 -0500 asked a question How to get error information using roslibjs

Using roslibjs and rosbridge--I'd like to get more information when there is an error, particularly when connecting. My code is:

ros = new ROSLIB.Ros({
url: robotUrl
});

ros.on('error', function(error) { console.log ('Error connecting to websocket server: ' , error); });

When an error occurs, I see in the debugger that the variable "error" contains a very involved structure, and I guess the actual error message is in there somewhere, but where?

2015-05-11 18:58:04 -0500 answered a question rosbridge cannot connect to secure websocket, timed out error

If you are using a self-signed certificate, this occurs because the browser thinks the connection is insecure. I think maybe snakeoil has the same problem. Using the same browser and the same web address including the port numer, but with https replacing wss, attempt to connect manually from the address bar. You should get the dialog that allows you to accept the insecure connection. After that, the wss connection works. At least for me.

2015-04-23 12:02:01 -0500 received badge  Notable Question (source)
2015-01-12 20:50:30 -0500 received badge  Popular Question (source)
2014-09-08 13:25:54 -0500 commented question Error on stdr_simulator tutorial

That doesn't seem to work.

viki@c3po:~/catkin_ws/src/stdr_tele/launch$ roslaunch stdr_tele stdr_keyboard.launch [stdr_keyboard.launch] is neither a launch file in package [stdr_tele] nor is [stdr_tele] a launch file name

Also fails when I attempt the roslaunch from the parent folder.

2014-09-07 23:18:51 -0500 asked a question Error on stdr_simulator tutorial

Using the stdr_simulator tutorial Using turtlebot for teleoperation

the command:

viki@c3po:~/catkin_ws/src/stdr_tele/launch$ roslaunch stdr_tele stdr_keyboard.launch 
receives the message:
[stdr_keyboard.launch] is neither a launch file in package [stdr_tele] nor is [stdr_tele] a launch file name

The launch file:

<launch>
  <!-- turtlebot_teleop_key already has its own built in velocity smoother -->
  <node pkg="turtlebot_teleop" type="turtlebot_teleop_key" name="turtlebot_teleop_keyboard"  output="screen">
    <param name="scale_linear" value="0.5" type="double"/>
    <param name="scale_angular" value="1.5" type="double"/>
    <remap from="turtlebot_teleop_keyboard/cmd_vel" to="robot0/dmd_vel"/>
  </node>
</launch>

What am I doing wrong?

2014-04-12 03:45:08 -0500 received badge  Good Answer (source)
2014-03-21 00:23:17 -0500 received badge  Nice Answer (source)
2013-09-08 15:27:54 -0500 received badge  Teacher (source)
2013-09-08 15:27:54 -0500 received badge  Necromancer (source)
2013-06-09 08:02:50 -0500 answered a question uninstall ROS

"uninstall ros" didn't work for me; I needed to say "uninstall ros-groovy"