Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include "ddsproxyjoy.h"
00026 #include <ros/callback_queue.h>
00027
00028 int main(int argc, char *argv[]){
00029
00030 ros::init(argc, argv, "ddsProxyJoy");
00031
00032 DDSProxyJoy *proxy_node = new DDSProxyJoy();
00033
00034 ROS_INFO("Initialized DDS <-Joy-> ROS ");
00035 proxy_node->initialize("IMPERA", "joy", "ddsJoy", "sensor_msgs.joy");
00036
00037 ros::Rate loop_rate(proxy_node->getFrequency());
00038
00039 while(ros::ok())
00040 {
00041 ros::getGlobalCallbackQueue()->callAvailable(ros::WallDuration(0.1));
00042 proxy_node->update();
00043 loop_rate.sleep();
00044 }
00045
00046 return 0;
00047 }
00048