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

TillScout's profile - activity

2017-09-24 03:28:19 -0500 received badge  Favorite Question (source)
2016-04-05 02:16:42 -0500 received badge  Great Question (source)
2014-07-12 14:46:51 -0500 commented question Installing ROS on Nexus 4

Have you been successful already? I am curious about the performance of ROS on Ubuntu Touch devices.

2012-10-16 23:59:09 -0500 received badge  Famous Question (source)
2012-09-05 06:31:50 -0500 received badge  Notable Question (source)
2012-09-05 06:31:50 -0500 received badge  Famous Question (source)
2012-08-23 09:23:46 -0500 received badge  Notable Question (source)
2012-08-23 09:23:46 -0500 received badge  Popular Question (source)
2012-08-01 00:40:50 -0500 commented answer How can I use the Create of the Turtlebot on the serial port?

What do you mean by "connect it correctly"?

2012-07-31 21:58:44 -0500 asked a question How can I use the Create of the Turtlebot on the serial port?

I have a custom built Turtlebot with an iRobot Create. However I do not have a serial to USB adapter.

How can I use the serial cable of the Create for my Turtlebot? I already found out that in turtlebot_node.py the port for the Create is set to ttyUSB0. What do I have to change here, so that I can use the serial port? Do I have to change anything else?

2012-07-29 08:46:45 -0500 commented question Turtlebot Dashboard in Fuerte

oops, I just wanted to reproduce the error, but now it works. Nevermind.

2012-07-29 02:30:24 -0500 asked a question Turtlebot Dashboard in Fuerte

I installed the Turtlebot stack on both my Ubuntu 12.04 Turtlebot computer and my workstation, but I cannot start the turtlebot dashboard. Is that not yet ported to Fuerte?

2012-05-31 01:06:46 -0500 commented question how to: Setting up ROS on RaspberryPi

ok, I was expecting that. I hope that it is possible to run a full ROS installation on a strong master but have several Pi slaves with only low level functionality that take care of certain tasks only (like a Pi that does only arm navigation in a more complex robot that runs a quadcore master or so)

2012-05-30 20:39:30 -0500 commented question how to: Setting up ROS on RaspberryPi

Great job! Will definitely try as soon as my Pi arrives. Even when it is slow, do you think it is usable when you distribute ROS-nodes over several Raspberry Pis?

2012-04-29 08:42:54 -0500 received badge  Popular Question (source)
2012-04-23 01:08:38 -0500 received badge  Citizen Patrol (source)
2012-04-11 08:36:59 -0500 commented question Best PC architecture to run Turtlebot

@patrick_hammer How does your solution work? How do you power the mini ITX board? Maybe you can post some more details on your project.

2011-10-18 05:14:48 -0500 received badge  Taxonomist
2011-09-22 00:49:28 -0500 commented question Best PC architecture to run Turtlebot
I am having similar thoughts. I would especially like to know, what graphics power the Turtlebot needs. Since the visualization is done on a workstation I would expect the Turtlebot itself not to be very hungry here. Or does the Kinect data processing need much GPU power?
2011-06-14 01:59:29 -0500 commented answer publish arrays to a topic on the command line
Hmm, yes it works, but it is a bit clumsy. Why are the qoutes and the curly brackets necessary?
2011-06-13 10:24:53 -0500 received badge  Good Question (source)
2011-06-13 09:35:36 -0500 received badge  Nice Question (source)
2011-06-13 08:30:46 -0500 received badge  Student (source)
2011-06-13 07:45:22 -0500 commented answer publish arrays to a topic on the command line
That works, thank you!
2011-06-13 07:45:08 -0500 received badge  Scholar (source)
2011-06-13 07:45:08 -0500 marked best answer publish arrays to a topic on the command line

Try this:

rostopic pub /array_test playground/Arrays "{name:['Foo', 'Bar'], value:[1.1, 2.2]}"

EDIT - the inner quotes don't seem to be required, even with spaces in the string, so this also works:

rostopic pub /array_test playground/Arrays "{name:[Some words, More words], value:[1.1, 2.2]}"
2011-06-13 07:45:07 -0500 received badge  Supporter (source)
2011-06-13 07:13:40 -0500 asked a question publish arrays to a topic on the command line

Hi all,

I am new to ROS and experimenting with several things. Now I have the following problem: I want to define a topic where the type contains arrays of strings and floats. So I wrote a file Arrays.msg that contains

string[] name
float32[] value

and a simple Subscriber node:

import roslib; roslib.load_manifest("playground")
import rospy
from playground.msg import Arrays

def callback(data):
        print "test"

def main():
        rospy.init_node("array_test_node")
        sub = rospy.Subscriber("array_test", Arrays, callback)
        rospy.spin()

if __name__ == "__main__":
        main()

Now my question is: How do I publish a list of strings and floats on the command line? It works when I type

rostopic pub /array_test playground/Arrays -- ["Foo"] [1.1]

and it publishes the correct message on /array_test. But what if I have more strings? I tried

rostopic pub /array_test playground/Arrays -- ["Foo", "Bar"] [1.1, 2.2]

but I get the following error message:

rostopic: error: Argument error: while parsing a flow node
expected the node content, but found '<stream end>'
    in "<string>", line 1, column 6:
    [Foo,
         ^

What would be the correct command for publishing these arrays on the command line?

Thanks!