force_torque_sensor_interface.h
Go to the documentation of this file.
1 // Copyright (C) 2013, PAL Robotics S.L.
3 //
4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are met:
6 // * Redistributions of source code must retain the above copyright notice,
7 // this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above copyright
9 // notice, this list of conditions and the following disclaimer in the
10 // documentation and/or other materials provided with the distribution.
11 // * Neither the name of hiDOF, Inc. nor the names of its
12 // contributors may be used to endorse or promote products derived from
13 // this software without specific prior written permission.
14 //
15 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
19 // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 // POSSIBILITY OF SUCH DAMAGE.
27 
29 
30 #pragma once
31 
32 
34 #include <string>
35 
36 namespace hardware_interface
37 {
38 
41 {
42 public:
43  ForceTorqueSensorHandle() = default;
44 
52  ForceTorqueSensorHandle(const std::string& name,
53  const std::string& frame_id,
54  const double* force,
55  const double* torque)
56  : name_(name),
57  frame_id_(frame_id),
58  force_(force),
59  torque_(torque)
60  {}
61 
62  // keep non-const version for binary compatibility
63  ForceTorqueSensorHandle(const std::string& name,
64  const std::string& frame_id,
65  double* force,
66  double* torque)
67  : name_(name),
68  frame_id_(frame_id),
69  force_(force),
70  torque_(torque)
71  {}
72 
73  std::string getName() const {return name_;}
74  std::string getFrameId() const {return frame_id_;}
75  const double* getForce() const {return force_;}
76  const double* getTorque() const {return torque_;}
77 
78 private:
79  std::string name_;
80  std::string frame_id_;
81  const double* force_ = {nullptr};
82  const double* torque_ = {nullptr};
83 };
84 
86 class ForceTorqueSensorInterface : public HardwareResourceManager<ForceTorqueSensorHandle> {};
87 
88 }
ForceTorqueSensorHandle(const std::string &name, const std::string &frame_id, double *force, double *torque)
Base class for handling hardware resources.
ForceTorqueSensorHandle(const std::string &name, const std::string &frame_id, const double *force, const double *torque)
Hardware interface to support reading the state of a force-torque sensor.
A handle used to read the state of a force-torque sensor.


hardware_interface
Author(s): Wim Meeussen, Adolfo Rodriguez Tsouroukdissian
autogenerated on Mon Feb 28 2022 23:30:10