Visual Servoing Platform  version 3.3.0 under development (2020-02-17)
vpForceTorqueAtiSensor.h
1 /****************************************************************************
2  *
3  * ViSP, open source Visual Servoing Platform software.
4  * Copyright (C) 2005 - 2019 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * See the file LICENSE.txt at the root directory of this source
11  * distribution for additional information about the GNU GPL.
12  *
13  * For using ViSP with software that can not be combined with the GNU
14  * GPL, please contact Inria about acquiring a ViSP Professional
15  * Edition License.
16  *
17  * See http://visp.inria.fr for more information.
18  *
19  * This software was developed at:
20  * Inria Rennes - Bretagne Atlantique
21  * Campus Universitaire de Beaulieu
22  * 35042 Rennes Cedex
23  * France
24  *
25  * If you have questions regarding the use of this file, please contact
26  * Inria at visp@inria.fr
27  *
28  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
29  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
30  *
31  * Description:
32  * ATI Force torque interface.
33  *
34  * Authors:
35  * Fabien Spindler
36  *
37  *****************************************************************************/
38 #ifndef _vpForceTorqueAtiSensor_h_
39 #define _vpForceTorqueAtiSensor_h_
40 
41 #include <visp3/core/vpConfig.h>
42 
43 #if defined(VISP_HAVE_ATIDAQ) && defined(VISP_HAVE_COMEDI)
44 
45 #include <ostream>
46 
47 #include <visp3/core/vpColVector.h>
48 #include <visp3/sensor/vpComedi.h>
49 
90 class VISP_EXPORT vpForceTorqueAtiSensor : public vpComedi
91 {
92 public:
94  virtual ~vpForceTorqueAtiSensor();
95 
96  void bias();
97  void close();
98 
103  std::string getCalibrationFile() const { return m_calibfile; }
104  vpColVector getForceTorque() const;
105  vpColVector getForceTorqueAsync() const;
106  std::string getForceUnits() const;
107  std::string getTorqueUnits() const;
108 
109  void open();
110 
111  void setCalibrationFile(const std::string &calibfile, unsigned short index = 1);
112  void unbias();
113 
114  friend VISP_EXPORT std::ostream &operator<<(std::ostream &os, const vpForceTorqueAtiSensor &ati);
115 
116 protected:
117  std::string m_calibfile;
118  unsigned short m_index;
119  unsigned short m_num_axes;
120  unsigned short m_num_channels;
122 };
123 
124 #endif
125 #endif
void open()
Definition: vpComedi.cpp:66
unsigned short m_index
Index of calibration in file (default: 1)
std::string m_calibfile
ATI calibration file FT*.cal.
vpColVector m_sample_bias
Sample value used for bias.
std::string getCalibrationFile() const
Implementation of column vector and the associated operations.
Definition: vpColVector.h:130
unsigned short m_num_axes
Number of axis or gages available from the sensor.
unsigned short m_num_channels
Number of channels available from the sensor.
void close()
Definition: vpComedi.cpp:93