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

kparikh's profile - activity

2020-04-09 12:00:45 -0500 received badge  Taxonomist
2018-05-09 01:32:51 -0500 commented question package did not get built

Maybe you need to adjust your cmakelists.txt file.

2018-05-09 01:27:58 -0500 commented question Velodyne HDL32 odd behaviour

Could you add a picture of the specs that you're using or even the web GUI with the values?

2018-03-15 06:19:53 -0500 received badge  Famous Question (source)
2018-02-05 20:55:00 -0500 edited answer Subscriber logic

You can make a new thread in your Python program and have it call a function called callback that doesn't take inputs.

2018-02-05 20:52:54 -0500 commented answer Subscriber logic

Yeah, not sure it would do what you want otherwise.

2018-02-05 20:52:54 -0500 received badge  Commentator
2018-02-05 19:16:40 -0500 commented answer Subscriber logic

Mark as answered and close if it works.

2018-02-05 19:16:06 -0500 commented answer Subscriber logic

Mark as answered if it works.

2018-02-05 19:14:59 -0500 commented answer Subscriber logic

If you want to connect it, then try. rospy.init_node('teleop_list', anonymous=True) rospy.Subscriber('key_vel', Twist,

2018-02-05 19:11:16 -0500 commented answer Subscriber logic

I'm telling you how to do something when the subscriber isn't triggered. Plus, you can't call callback(data) without pro

2018-02-05 18:37:08 -0500 received badge  Famous Question (source)
2018-02-05 18:35:58 -0500 answered a question Subscriber logic

You can make new thread in your Python program and have it call a function called callback that doesn't take inputs. de

2017-05-18 04:20:39 -0500 received badge  Notable Question (source)
2017-05-15 02:25:58 -0500 received badge  Popular Question (source)
2017-05-14 17:52:37 -0500 commented answer What do people use to create an exectuable program from a ROS project?

That's perfect. Thank you.

2017-05-14 17:44:56 -0500 marked best answer What do people use to create an exectuable program from a ROS project?

Are there any sites with instructions on how to make a program that people can install from a ROS project? I haven't found any specifics so I'm not sure if it's the same as other projects.

2017-05-14 17:44:56 -0500 received badge  Scholar (source)
2017-05-14 16:34:52 -0500 asked a question What do people use to create an exectuable program from a ROS project?

What do people use to create an exectuable program from a ROS project? Are there any sites with instructions on how to m

2017-04-12 23:43:04 -0500 commented answer Error while compiling a program to publish a string in a custom topic.

It can also be done this way:

std_msgs::String msg;
msg.data = "hello";
2017-03-07 00:11:16 -0500 received badge  Notable Question (source)
2016-11-26 01:00:33 -0500 received badge  Enthusiast
2016-11-23 18:56:29 -0500 received badge  Supporter (source)
2016-11-22 08:58:59 -0500 received badge  Self-Learner (source)
2016-11-22 08:58:59 -0500 received badge  Teacher (source)
2016-11-19 12:40:52 -0500 commented question Is there a way to prevent the VLP-16 from disconnecting after it starts delivering information?

Thanks for the help.

2016-11-19 10:56:31 -0500 commented question Is there a way to prevent the VLP-16 from disconnecting after it starts delivering information?

If you don't mind, could you write the answer out. I don't have enough points to accept my own answer yet. I'll accept yours and close it.

2016-11-19 10:54:25 -0500 received badge  Popular Question (source)
2016-11-18 16:03:25 -0500 commented question Is there a way to prevent the VLP-16 from disconnecting after it starts delivering information?

I checked the wired connection settings and it seems like it was set to Automatic (DHCP). It works now that I set it to manual and input the ip and mask. Thanks.

2016-11-18 13:24:57 -0500 commented question Is there a way to prevent the VLP-16 from disconnecting after it starts delivering information?

I'll give that a shot. I was having trouble before when I wasn't fiddling with the ip addr but I'll see if I can make it work with just a static IP.

I was following this answer.

2016-11-18 12:07:58 -0500 commented question Is there a way to prevent the VLP-16 from disconnecting after it starts delivering information?

I am on a wireless network. Do I need to turn off wifi while connected to the LIDAR?

2016-11-17 15:07:52 -0500 asked a question Is there a way to prevent the VLP-16 from disconnecting after it starts delivering information?

When I connect the VLP-16, the connection works fine, but after a few minutes Ubuntu indicates that the connection has been disconnected.

These are the commands I input into the terminal to get a data feed.

sudo ifconfig eth0 up
sudo ip addr add 192.168.1.200 dev eth0 
sudo route add -net 192.168.1.0 netmask 255.255.255.0 dev eth0
roslaunch velodyne_pointcloud VLP16_points.launch  calibration:=/home/user/PUCK_Calibration.yaml

I need the connection to be stable between the laptop and the LIDAR for a very long time. Is there a stable way to establish a connection? Because when it disconnects, I need to rerun those commands to get data from the lidar again.

Am I doing something wrong?

I am using Ubuntu 14.04 LST with ROS Indigo.