~shadowrobot/sr-ros-interface-ethercat/electric

« back to all changes in this revision

Viewing changes to sr_remappers/src/shadowhand_to_cyberglove_remapper_node.cpp

  • Committer: Ugo Cupcic
  • Date: 2012-08-08 10:17:21 UTC
  • mfrom: (1.1.552 shadow_robot_ethercat)
  • Revision ID: ugo@shadowrobot.com-20120808101721-lutmwmwmt06srqya
1.0.0 stable release for the etherCAT hardware

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**
2
 
 * @file   shadowhand_to_cyberglove_remapper_node.cpp
3
 
 * @author Ugo Cupcic <ugo@shadowrobot.com>, Contact <contact@shadowrobot.com>
4
 
 * @date   Thu May 13 10:39:44 2010
5
 
 *
6
 
 * @brief Launch a ros node to remap data coming from the Cyberglove to the Dextrous Hand.
7
 
 *
8
 
 *
9
 
 */
10
 
 
11
 
#include <ros/ros.h>
12
 
 
13
 
#include "sr_remappers/shadowhand_to_cyberglove_remapper.h"
14
 
 
15
 
using namespace ros;
16
 
using namespace shadowhand_to_cyberglove_remapper;
17
 
 
18
 
  /////////////////////////////////
19
 
  //           MAIN              //
20
 
  /////////////////////////////////
21
 
 
22
 
 
23
 
int main(int argc, char** argv)
24
 
{
25
 
  ros::init(argc, argv, "cyberglove_remapper");
26
 
 
27
 
  ShadowhandToCybergloveRemapper remapper;
28
 
  ros::spin();
29
 
 
30
 
  return 0;
31
 
}