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

alexprocopio's profile - activity

2022-12-27 00:04:24 -0500 received badge  Notable Question (source)
2022-12-27 00:04:24 -0500 received badge  Popular Question (source)
2019-01-28 13:20:06 -0500 received badge  Famous Question (source)
2016-09-27 09:09:01 -0500 received badge  Famous Question (source)
2016-09-27 09:05:17 -0500 received badge  Notable Question (source)
2016-09-27 09:05:12 -0500 received badge  Famous Question (source)
2016-09-27 09:05:12 -0500 received badge  Popular Question (source)
2016-09-27 09:05:12 -0500 received badge  Notable Question (source)
2016-08-08 01:36:54 -0500 received badge  Notable Question (source)
2014-10-12 22:21:34 -0500 received badge  Notable Question (source)
2014-10-12 22:21:34 -0500 received badge  Famous Question (source)
2014-09-29 06:51:36 -0500 received badge  Famous Question (source)
2014-05-06 10:09:44 -0500 received badge  Popular Question (source)
2014-03-27 20:58:01 -0500 received badge  Popular Question (source)
2014-03-11 05:24:13 -0500 received badge  Famous Question (source)
2014-03-11 05:24:13 -0500 received badge  Popular Question (source)
2014-03-11 05:24:13 -0500 received badge  Notable Question (source)
2014-03-11 05:24:13 -0500 received badge  Famous Question (source)
2014-02-02 23:10:09 -0500 received badge  Notable Question (source)
2014-02-02 23:10:09 -0500 received badge  Popular Question (source)
2013-11-06 23:53:59 -0500 received badge  Notable Question (source)
2013-11-06 13:10:54 -0500 received badge  Popular Question (source)
2013-10-15 03:06:29 -0500 received badge  Notable Question (source)
2013-09-14 11:50:02 -0500 received badge  Popular Question (source)
2013-09-11 09:42:57 -0500 answered a question why not run the command sudo rosdep init

how can I start rosdep otherwise?

2013-09-11 09:41:04 -0500 asked a question why not run the command sudo rosdep init

ROS Hydro installed, but when I use the command sudo rosdep init gives error, he does not think the list on github ... Can anyone help me resolve this impasse?

2013-09-11 09:26:16 -0500 answered a question groovy error installation

Também estou com esse erro, alguem sabe como se resolve?

2013-09-11 09:23:01 -0500 asked a question Why not run the command sudo init rosdep??

ROS Hydro installed, but when I use the command sudo rosdep init gives error, he does not think the list on github ... Can anyone help me resolve this impasse?

Alex Procopio alex@hotmail.com

2013-09-11 09:20:14 -0500 asked a question command sudo rosdep init gives error

ROS Hydro installed, but when I use the command sudo rosdep init gives error, he does not think the list on github ... Can anyone help me resolve this impasse?

Alex Procopio alex@hotmail.com

2013-09-11 09:18:05 -0500 asked a question command sudo rosdep init gives error

ROS Hydro installed, but when I use the command sudo rosdep init gives error, he does not think the list on github ... Can anyone help me resolve this impasse?

Alex Procopio alex@hotmail.com

2013-09-02 14:42:56 -0500 asked a question ROS e gazepo

Quero executar o gazepo com o ROS , mas trava no meu computador. Alguém sabe uma configuração mínima de hardware pra executar.? Estou usando o ubuntu 12.04 e ROS Groovy... e 8Gb de memória

2013-09-02 03:28:25 -0500 commented question stack/package exemplo1 not found

ROS versão: Groovy candeias ou rosbuild: candeias layout do seu espaço de trabalho: catkin_init_workspace

2013-09-02 03:27:28 -0500 answered a question stack/package exemplo1 not found

ROS version: Groovy catkin or rosbuild: catkin layout of your workspace: catkin_init_workspace

2013-09-01 17:44:25 -0500 asked a question stack/package exemplo1 not found

eu crio um pacote personalizado e compilo e nao da erro. Mas quando vou executa-lo dá esse erro

Error: stack/package exemplo1 not found

Como posso resover isso???

2013-09-01 17:43:05 -0500 asked a question rodar pacote

executo um pacote e dá not found...

2013-09-01 17:40:05 -0500 asked a question erro excutar pacote

Olá! Eu compilo este programa, mas quando vou executa-lo aparece essa msg Error: stack/package exemplo1 not found alguém pode me ajudar...

Segue abaixo o codigo CPP, mais o package.xml e o CMakeList.txt

exemplo1.cpp

// This program published randomly-generated velocity // messages for turtlesim. #include <ros ros.h=""> #include <turtlesim velocity.h=""> // For turtlesim::Velocity #include <stdlib.h> // For rand() and RAND_MAX

int main(int argc, char **argv) { // Initialize the ROS system and become a node. ros::init(argc, argv, "publish_velocity"); ros::NodeHandle nh;

// Create a publisher object. ros::Publisher pub = nh.advertise<turtlesim::velocity>( "turtle1/command_velocity", 1000);

// Seed the random number generator. srand(time(0));

// Loop at 2Hz until the node is shut down. ros::Rate rate(2); while(ros::ok()) { // Create and fill in the message. turtlesim::Velocity msg; msg.linear = float(rand())/float(RAND_MAX); msg.angular = 2*float(rand())/float(RAND_MAX) - 1;

// Publish the message.
pub.publish(msg);

// Send a message to rosout with the details.
ROS_INFO_STREAM("Sending random velocity command:"
  << " linear=" << msg.linear
  << " angular=" << msg.angular);

// Wait until it's time for another iteration.
rate.sleep();

} }

Conteúdo do arquivo package.xml <package> <name>exemplo</name> <version>0.0.1</version> <description> Exemplos </description> <maintainer <a="" href="mailto:email=" alex.procopio@hotmail.com""="">email="alex.procopio@hotmail.com"> Alex Proc </maintainer> <license/> <buildtool_depend>catkin</buildtool_depend> <build_depend>turtlesim</build_depend> <run_depend>turtlesim</run_depend> </package>

Conteúdo do arquivo CMakeList.txt

What version of CMake is needed?

cmake_minimum_required(VERSION 2.8.3)

The name of this package.

project(exemplo1)

Find the catkin build system, and any other packages on which we depend.

find_package(catkin REQUIRED COMPONENTS roscpp turtlesim std_srvs)

Declare our catkin package.

catkin_package()

Specify locations of header files.

include_directories(include ${catkin_INCLUDE_DIRS})

Declare the executable, along with its source files.

add_executable(exemplo1 exemplo1.cpp)

Specify libraries against which to link.

target_link_libraries(exemplo1 ${catkin_LIBRARIES})

2013-09-01 17:36:42 -0500 asked a question Erro quando compilo um programa stack/package exemplo1 not found

Olá! Eu compilo este programa, mas quando vou executa-lo aparece essa msg Error: stack/package exemplo1 not found alguém pode me ajudar...

Segue abaixo o codigo CPP, mais o package.xml e o CMakeList.txt

exemplo1.cpp

// This program published randomly-generated velocity // messages for turtlesim. #include <ros ros.h=""> #include <turtlesim velocity.h=""> // For turtlesim::Velocity #include <stdlib.h> // For rand() and RAND_MAX

int main(int argc, char **argv) { // Initialize the ROS system and become a node. ros::init(argc, argv, "publish_velocity"); ros::NodeHandle nh;

// Create a publisher object. ros::Publisher pub = nh.advertise<turtlesim::velocity>( "turtle1/command_velocity", 1000);

// Seed the random number generator. srand(time(0));

// Loop at 2Hz until the node is shut down. ros::Rate rate(2); while(ros::ok()) { // Create and fill in the message. turtlesim::Velocity msg; msg.linear = float(rand())/float(RAND_MAX); msg.angular = 2*float(rand())/float(RAND_MAX) - 1;

// Publish the message.
pub.publish(msg);

// Send a message to rosout with the details.
ROS_INFO_STREAM("Sending random velocity command:"
  << " linear=" << msg.linear
  << " angular=" << msg.angular);

// Wait until it's time for another iteration.
rate.sleep();

} }

Conteúdo do arquivo package.xml <package> <name>exemplo</name> <version>0.0.1</version> <description> Exemplos </description> <maintainer <a="" href="mailto:email=" alex.procopio@hotmail.com""="">email="alex.procopio@hotmail.com"> Alex Proc </maintainer> <license/> <buildtool_depend>catkin</buildtool_depend> <build_depend>turtlesim</build_depend> <run_depend>turtlesim</run_depend> </package>

Conteúdo do arquivo CMakeList.txt

What version of CMake is needed?

cmake_minimum_required(VERSION 2.8.3)

The name of this package.

project(exemplo1)

Find the catkin build system, and any other packages on which we depend.

find_package(catkin REQUIRED COMPONENTS roscpp turtlesim std_srvs)

Declare our catkin package.

catkin_package()

Specify locations of header files.

include_directories(include ${catkin_INCLUDE_DIRS})

Declare the executable, along with its source files.

add_executable(exemplo1 exemplo1.cpp)

Specify libraries against which to link.

target_link_libraries(exemplo1 ${catkin_LIBRARIES})

2013-08-15 12:41:48 -0500 received badge  Popular Question (source)
2013-08-14 06:49:19 -0500 asked a question Tem como fazer uma simulação 3D no ROS usando rviz no contexto de swarm inteligent?

Tem como fazer uma simulação 3D no ROS usando rviz no contexto de swarm inteligent?

Preciso que na simulacao eu demonstre as propriedades do Swmar...

Alguém pode me ajudar?

alex.procopio@hotmail.com