$search
00001 /* 00002 * Copyright (c) 2010, Willow Garage, Inc. 00003 * All rights reserved. 00004 * 00005 * Redistribution and use in source and binary forms, with or without 00006 * modification, are permitted provided that the following conditions are met: 00007 * 00008 * * Redistributions of source code must retain the above copyright 00009 * notice, this list of conditions and the following disclaimer. 00010 * * Redistributions in binary form must reproduce the above copyright 00011 * notice, this list of conditions and the following disclaimer in the 00012 * documentation and/or other materials provided with the distribution. 00013 * * Neither the name of the Willow Garage, Inc. nor the names of its 00014 * contributors may be used to endorse or promote products derived from 00015 * this software without specific prior written permission. 00016 * 00017 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 00018 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 00019 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 00020 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 00021 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 00022 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 00023 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 00024 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 00025 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 00026 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00027 * POSSIBILITY OF SUCH DAMAGE. 00028 */ 00029 00030 #include <ros/ros.h> 00031 #include <geometry_msgs/Twist.h> 00032 #include <joy/Joy.h> 00033 #include "boost/thread/mutex.hpp" 00034 #include "boost/thread/thread.hpp" 00035 #include "ros/console.h" 00036 00037 class NxtTeleop 00038 { 00039 public: 00040 NxtTeleop(); 00041 00042 private: 00043 void joyCallback(const joy::Joy::ConstPtr& joy); 00044 void publish(); 00045 00046 ros::NodeHandle ph_, nh_; 00047 00048 int linear_, angular_, deadman_axis_; 00049 double l_scale_, a_scale_; 00050 ros::Publisher vel_pub_; 00051 ros::Subscriber joy_sub_; 00052 00053 geometry_msgs::Twist last_published_; 00054 boost::mutex publish_mutex_; 00055 bool deadman_pressed_; 00056 ros::Timer timer_; 00057 00058 }; 00059 00060 NxtTeleop::NxtTeleop(): 00061 ph_("~"), 00062 linear_(1), 00063 angular_(2), 00064 deadman_axis_(0), 00065 l_scale_(1.0), 00066 a_scale_(1.0) 00067 { 00068 00069 00070 ph_.param("axis_linear", linear_, linear_); 00071 ph_.param("axis_angular", angular_, angular_); 00072 ph_.param("axis_deadman", deadman_axis_, deadman_axis_); 00073 ph_.param("scale_angular", a_scale_, a_scale_); 00074 ph_.param("scale_linear", l_scale_, l_scale_); 00075 00076 vel_pub_ = nh_.advertise<geometry_msgs::Twist>("cmd_vel", 1); 00077 joy_sub_ = nh_.subscribe<joy::Joy>("joy", 10, &NxtTeleop::joyCallback, this); 00078 00079 timer_ = nh_.createTimer(ros::Duration(0.1), boost::bind(&NxtTeleop::publish, this)); 00080 } 00081 00082 void NxtTeleop::joyCallback(const joy::Joy::ConstPtr& joy) 00083 { 00084 geometry_msgs::Twist vel; 00085 vel.angular.z = a_scale_*joy->axes[angular_]; 00086 vel.linear.x = l_scale_*joy->axes[linear_]; 00087 last_published_ = vel; 00088 deadman_pressed_ = joy->buttons[deadman_axis_]; 00089 00090 } 00091 00092 void NxtTeleop::publish() 00093 { 00094 boost::mutex::scoped_lock lock(publish_mutex_); 00095 if (deadman_pressed_) 00096 { 00097 vel_pub_.publish(last_published_); 00098 } 00099 00100 } 00101 int main(int argc, char** argv) 00102 { 00103 ros::init(argc, argv, "nxt_teleop"); 00104 NxtTeleop nxt_teleop; 00105 00106 ros::spin(); 00107 }