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

andruino's profile - activity

2019-08-29 07:32:45 -0500 received badge  Notable Question (source)
2019-08-29 07:32:45 -0500 received badge  Popular Question (source)
2017-07-04 21:49:19 -0500 received badge  Famous Question (source)
2017-02-20 19:53:58 -0500 received badge  Student (source)
2017-02-20 19:46:19 -0500 received badge  Famous Question (source)
2016-11-28 15:42:24 -0500 answered a question How to send empty message from js to ros

try with a std_msgs/String

2016-11-17 16:57:52 -0500 commented question Access point network problem

Thank you. I am ussing the old access point again. On the new AP all filters and firewalls were disabled. Mainly I just wanted to know if the problem was something common that happened to others. When I'll have any time, I'll get the protocol analyzer. Thanks again for your comment.

2016-11-16 10:40:04 -0500 received badge  Editor (source)
2016-11-16 10:14:49 -0500 received badge  Notable Question (source)
2016-11-16 10:13:33 -0500 asked a question Access point network problem

In a ROS network, with several computer/robots everything was right... I have change the access point and do not work, even when I have disable the access point firewall... Most of the connections works (images, sensors...), but strings messages do not... Any idea?

2016-08-12 06:49:44 -0500 received badge  Popular Question (source)
2016-08-12 04:38:31 -0500 received badge  Notable Question (source)
2016-08-12 04:38:31 -0500 received badge  Popular Question (source)
2016-06-02 11:47:13 -0500 answered a question RVIZ on Rasbian jessie
2016-06-01 02:19:31 -0500 received badge  Enthusiast
2016-05-31 07:29:56 -0500 asked a question tf android: No tf data received ??

Hi everyone! I'm trying to implement a TF broadcaster in rosjava to transform from base_link to odom with the code shown below. When I run the command "rosrun tf view_frames" tells me "no tf recieved data", but if I run the command "rostopic echo tf" shows time, rotation and translation.

What am i missing?

public class nodo_odom_pub implements NodeMain {

String base_frame_id = "base_link";
String odom_frame_id = "odom";

@Override
public void onStart(final ConnectedNode node) {


    final Publisher<Odometry> publisher = node.newPublisher("/odom", "nav_msgs/Odometry");
    final Publisher<TransformStamped> broadcaster = node.newPublisher("/tf", TransformStamped._TYPE);

        node.executeCancellableLoop(new CancellableLoop() {

        @Override
        protected void setup() {

        }

        protected void loop() throws InterruptedException {

            long time_delta_millis = System.currentTimeMillis(); // - SystemClock.uptimeMillis();

            TransformStamped transform = broadcaster.newMessage();

                            transform.getTransform().getRotation().setX(0);
            transform.getTransform().getRotation().setY(0);
            transform.getTransform().getRotation().setZ(Math.sin(gAzimut / 2));
            transform.getTransform().getRotation().setW(Math.cos(gAzimut / 2));

            transform.getTransform().getTranslation().setX(x);
            transform.getTransform().getTranslation().setY(y);
            transform.getTransform().getTranslation().setZ(0);

            transform.getHeader().setStamp(Time.fromMillis(time_delta_millis));

            transform.setChildFrameId(base_frame_id);
            transform.getHeader().setFrameId(odom_frame_id);

            broadcaster.publish(transform);


        }

    });

}

}

2016-05-28 11:43:17 -0500 received badge  Teacher (source)
2016-05-28 10:35:29 -0500 answered a question Why does ROS not have any GUI and support for Windows?

An viable alternative for the Windows' classrooms enviroment (or for Microsoft Windows OS users) is to use a Ubuntu virtual machine over a Windows OS using Virtual Box. Even virtual machine with ROS installed ready-to-use exists as .ova files for VirtualBox from nootrix http://nootrix.com/software/virtualiz...

2016-05-25 06:47:33 -0500 asked a question Cloud Google Vision in ROS

I am developing ( slowly) a mobile robot with ROS costing less than 35 euros , for education, using Android and Arduino. (Any collaboration is welcome !! :-) . I would add "cloud" capabilities to the robot, so is there any information for integrating Google Cloud Vision or a similar service in ROS?. Thanks

2013-12-09 08:41:29 -0500 received badge  Famous Question (source)
2013-10-07 09:14:05 -0500 commented answer Interface to control Android robot

Thank you very much! I will follow your recommendations. Thanks again

2013-10-05 03:13:43 -0500 received badge  Notable Question (source)
2013-10-03 13:40:21 -0500 received badge  Popular Question (source)
2013-10-02 10:58:37 -0500 commented question Interface to control Android robot

Thanks for the response, i am ros beginner, so I would try to explain better this time: The robot runs with a RosAndroidApps and I can command the robot from a PC with Ubuntu and ROS Groovy using command as "rostopic pub COMMAND", because the RosAndriodApps have an active topic to receive orders. So, I would like to have an GUI (like SCADA) in the PC to graphically control several robots (control arrows, buttons on/off, etc...of each robot) and to show the images and measures from the robots into the PC screen, and to make some data aggregations from data reaching from differents robots. So, I need just an idea of where to begin... Thanks again

2013-10-02 10:23:09 -0500 answered a question Interface to control Android robot

Thanks for the response, i am ros beginner, so I would try to explain better this time: The robot runs with a RosAndroidApps and I can command the robot from a PC with Ubuntu and ROS Groovy using command as "rostopic pub COMMAND", because the RosAndriodApps have an active topic to receive orders. So, I would like to have an GUI (like SCADA) in the PC to graphically control several robots (control arrows, buttons on/off, etc...of each robot) and to show the images and measures from the robots into the PC screen, and to make some data aggregations from data reaching from differents robots. So, I need just an idea of where to begin... Thanks again

2013-09-29 09:18:27 -0500 asked a question Interface to control Android robot

I'm designing a robot based on Android with ROS, now I can control the robot and get data from it using the command line "rostopic pub" and "rostopic echo", but how could make nicer GUI (something like "turtlebot Interactive Markers", but much more simple)?

Thanks in advance

PD. I would like to participate in the Spanish and Portuguese transalate of ROS, any information about that?