00001 // Copyright (C) 2010-2011 Institut de Robotica i Informatica Industrial, CSIC-UPC. 00002 // Author 00003 // All rights reserved. 00004 // 00005 // This file is part of iri-ros-pkg 00006 // iri-ros-pkg is free software: you can redistribute it and/or modify 00007 // it under the terms of the GNU Lesser General Public License as published by 00008 // the Free Software Foundation, either version 3 of the License, or 00009 // at your option) any later version. 00010 // 00011 // This program is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public License 00017 // along with this program. If not, see <http://www.gnu.org/licenses/>. 00018 // 00019 // IMPORTANT NOTE: This code has been generated through a script from the 00020 // iri_ros_scripts. Please do NOT delete any comments to guarantee the correctness 00021 // of the scripts. ROS topics can be easly add by using those scripts. Please 00022 // refer to the IRI wiki page for more information: 00023 // http://wikiri.upc.es/index.php/Robotics_Lab 00024 00025 #ifndef _dynamixel_gripper_driver_h_ 00026 #define _dynamixel_gripper_driver_h_ 00027 00028 #include <iri_base_driver/iri_base_driver.h> 00029 #include <iri_dynamixel_gripper/DynamixelGripperConfig.h> 00030 00031 #include <iridrivers/dynamixel_motor.h> 00032 00052 class DynamixelGripperDriver : public iri_base_driver::IriBaseDriver 00053 { 00054 private: 00055 boost::shared_ptr<CDynamixelMotor> motor_; 00056 00057 int baudrate_; 00058 int bus_id_; 00059 unsigned char servo_id_; 00060 double max_angle_; 00061 double min_angle_; 00062 double effort_; 00063 bool closed_; 00064 00065 public: 00072 typedef iri_dynamixel_gripper::DynamixelGripperConfig Config; 00073 00080 Config config_; 00081 00090 DynamixelGripperDriver(void); 00091 00102 bool openDriver(void); 00103 00114 bool closeDriver(void); 00115 00126 bool startDriver(void); 00127 00138 bool stopDriver(void); 00139 00151 void config_update(Config& new_cfg, uint32_t level=0); 00152 00157 bool open_gripper(); 00158 00163 bool close_gripper(); 00164 00169 void stop_gripper(); 00170 00175 bool is_moving(); 00176 00181 float get_effort(); 00182 00187 float get_max_effort(); 00188 00193 float get_angle(); 00194 00201 ~DynamixelGripperDriver(void); 00202 00203 private: 00208 bool move_gripper(const double position_in_radians); 00209 }; 00210 00211 #endif