![]() |
Visual Servoing Platform version 3.7.0
|
#include <vpForceTorqueAtiSensor.h>
Public Member Functions | |
| vpForceTorqueAtiSensor () | |
| virtual | ~vpForceTorqueAtiSensor () VP_OVERRIDE |
| void | bias () |
| void | close () |
| std::string | getCalibrationFile () const |
| vpColVector | getForceTorque () const |
| std::string | getForceUnits () const |
| std::string | getTorqueUnits () const |
| void | open () |
| void | setCalibrationFile (const std::string &calibfile, unsigned short index=1) |
| void | unbias () |
Protected Attributes | |
| std::string | m_calibfile |
| unsigned short | m_index |
| unsigned short | m_num_axes |
| unsigned short | m_num_channels |
| vpColVector | m_sample_bias |
Protected Member Functions Inherited from vpComedi | |
| std::string | m_device |
| comedi_t * | m_handler |
| unsigned int | m_subdevice |
| unsigned int | m_range |
| unsigned int | m_aref |
| unsigned int | m_nchannel |
| std::vector< comedi_range * > | m_range_info |
| std::vector< lsampl_t > | m_maxdata |
| std::vector< unsigned int > | m_chanlist |
Friends | |
| VISP_EXPORT std::ostream & | operator<< (std::ostream &os, const vpForceTorqueAtiSensor &ati) |
Inherited functionalities from vpComedi | |
| comedi_t * | getHandler () const |
| std::vector< lsampl_t > | getMaxData () const |
| unsigned int | getNChannel () const |
| vpColVector | getPhyData () const |
| std::string | getPhyDataUnits () const |
| std::vector< comedi_range * > | getRangeInfo () const |
| unsigned int | getSubDevice () const |
| void | setAnalogReference (const unsigned int &aref) |
| void | setChannelNumbers (const unsigned int &nchannel) |
| void | setDevice (const std::string &device) |
| void | setRange (const unsigned int &range) |
| void | setSubDevice (const unsigned int &subdevice) |
| std::vector< lsampl_t > | getRawData () const |
Interface for ATI force/torque sensor. This class works only under linux-like OS. It requires Comedi 3rd party. Installation instructions are provided here https://visp.inria.fr/3rd_comedi.
Comedi is the linux control and measurement device interface. For more information see http://www.comedi.org.
This class was tested with ATI Gamma 65-SI FT sensor connected to a National Instrument NI DAQmx PCI-6220 board.
Synchronous F/T data acquisition is performed using getForceTorque(). The call to the function blocks until the whole acquisition has finished.
The following example shows how to get single measures from an ATI F/T device each 10 ms (100 Hz).
Definition at line 85 of file vpForceTorqueAtiSensor.h.
| BEGIN_VISP_NAMESPACE vpForceTorqueAtiSensor::vpForceTorqueAtiSensor | ( | ) |
Default constructor.
Definition at line 49 of file vpForceTorqueAtiSensor.cpp.
References m_calibfile, m_index, m_num_axes, m_num_channels, and m_sample_bias.
Referenced by operator<<.
|
virtual |
Destructor that closes the connection to the device.
Definition at line 185 of file vpForceTorqueAtiSensor.cpp.
References close().
| void vpForceTorqueAtiSensor::bias | ( | ) |
Bias the sensor storing an unloaded measurement; this removes the effect of tooling weight.
Definition at line 68 of file vpForceTorqueAtiSensor.cpp.
References vpException::fatalError, vpComedi::getPhyData(), m_num_channels, m_sample_bias, and open().
| void vpForceTorqueAtiSensor::close | ( | ) |
Close the calibration structure opened using setCalibrationFile() and close the connection to the device.
Definition at line 119 of file vpForceTorqueAtiSensor.cpp.
References vpComedi::close().
Referenced by ~vpForceTorqueAtiSensor().
|
inline |
Return the calibration file location specified using setCalibrationFile().
Definition at line 98 of file vpForceTorqueAtiSensor.h.
References m_calibfile.
| vpColVector vpForceTorqueAtiSensor::getForceTorque | ( | ) | const |
Get a 6-dimension force/torque vector from device. This function performs synchronously one single data acquisition. "Synchronous" means that the calling process blocks until the data acquisition has finished.
Definition at line 137 of file vpForceTorqueAtiSensor.cpp.
References vpException::fatalError, vpComedi::getPhyData(), m_num_axes, m_num_channels, and vpArray2D< Type >::size().
| std::string vpForceTorqueAtiSensor::getForceUnits | ( | ) | const |
Get force units.
Definition at line 168 of file vpForceTorqueAtiSensor.cpp.
|
inlineinherited |
|
inlineinherited |
Get max data per channel. The returned vector is of dimension the number of channels.
Definition at line 122 of file vpComedi.h.
References m_maxdata.
|
inlineinherited |
Get number of channels.
Definition at line 124 of file vpComedi.h.
References m_nchannel.
|
inherited |
Get physical data from device with units in Volts or mA. To know which unit is used, call getPhyDataUnits().
Definition at line 131 of file vpComedi.cpp.
References vpException::fatalError, getRawData(), vpMath::isNaN(), m_handler, m_maxdata, m_nchannel, and m_range_info.
Referenced by vpForceTorqueAtiSensor::bias(), vpForceTorqueAtiSensor::getForceTorque(), and vpForceTorqueAtiSensor::unbias().
|
inherited |
Get units (V or mA) of the physical data acquired by getPhyData() or getPhyDataAsync().
Definition at line 153 of file vpComedi.cpp.
References vpException::fatalError, m_handler, and m_range_info.
|
inlineinherited |
Get data range information per channel. The returned vector is of dimension the number of channels.
Definition at line 131 of file vpComedi.h.
References m_range_info.
|
protectedinherited |
Get raw data from device. If you selected an analog input subdevice, the output is an unsigned number, for example between 0 and 65535 for a 16 bit analog input, with 0 representing the lowest voltage of the ADC, and a hardware-dependent maximum value representing the highest voltage.
Definition at line 103 of file vpComedi.cpp.
References vpException::fatalError, m_aref, m_device, m_handler, m_nchannel, m_range, and m_subdevice.
Referenced by getPhyData().
|
inlineinherited |
| std::string vpForceTorqueAtiSensor::getTorqueUnits | ( | ) | const |
Get torque units.
Definition at line 176 of file vpForceTorqueAtiSensor.cpp.
| void vpForceTorqueAtiSensor::open | ( | ) |
Open the connection to the device.
Definition at line 57 of file vpForceTorqueAtiSensor.cpp.
References m_num_channels, vpComedi::open(), and vpComedi::setChannelNumbers().
|
inlineinherited |
Set analog reference type.
| aref | : The aref parameter specifies an analog reference to use: AREF_GROUND, AREF_COMMON, AREF_DIFF, or AREF_OTHER. |
Definition at line 142 of file vpComedi.h.
References m_aref.
| void vpForceTorqueAtiSensor::setCalibrationFile | ( | const std::string & | calibfile, |
| unsigned short | index = 1 ) |
Open ATI calibration file that should correspond to your F/T sensor.
| calibfile | : ATI calibration file. This file has the following pattern: FT*.cal. |
| index | : Index of calibration in file (default =1). |
Definition at line 193 of file vpForceTorqueAtiSensor.cpp.
References vpException::fatalError, m_calibfile, m_index, m_num_axes, and m_num_channels.
|
inlineinherited |
Number of channels to read from sensor. For a 6-dim force/torque sensor use 6.
Definition at line 148 of file vpComedi.h.
References m_nchannel.
Referenced by vpForceTorqueAtiSensor::open().
|
inlineinherited |
Set comedi device name. Default value is /dev/comedi0.
Definition at line 151 of file vpComedi.h.
References m_device.
|
inlineinherited |
Set the range parameter that is the zero-based index of one of the gain ranges supported by the channel. This is a number from 0 to N-1 where N is the number of ranges supported by the channel.
Definition at line 158 of file vpComedi.h.
References m_range.
|
inlineinherited |
Set comedi analog input subdevice.
Definition at line 160 of file vpComedi.h.
References m_subdevice.
| void vpForceTorqueAtiSensor::unbias | ( | ) |
Unbias the sensor.
Definition at line 92 of file vpForceTorqueAtiSensor.cpp.
References vpException::fatalError, vpComedi::getPhyData(), m_num_channels, m_sample_bias, and open().
|
friend |
Return information from calibration file.
| os | : Input stream. |
| ati | : ATI F/T sensor interface. |
The following example shows how to use this method.
Definition at line 234 of file vpForceTorqueAtiSensor.cpp.
References m_calibfile, m_index, operator<<, and vpForceTorqueAtiSensor().
Referenced by operator<<.
|
protectedinherited |
Analog reference
Definition at line 173 of file vpComedi.h.
Referenced by getRawData(), open(), setAnalogReference(), and vpComedi().
|
protected |
ATI calibration file FT*.cal.
Definition at line 111 of file vpForceTorqueAtiSensor.h.
Referenced by getCalibrationFile(), operator<<, setCalibrationFile(), and vpForceTorqueAtiSensor().
|
protectedinherited |
|
protectedinherited |
Comedi device name (default: /dev/comedi0)
Definition at line 169 of file vpComedi.h.
Referenced by getRawData(), open(), setDevice(), and vpComedi().
|
protectedinherited |
Comedi handler
Definition at line 170 of file vpComedi.h.
Referenced by close(), getHandler(), getPhyData(), getPhyDataUnits(), getRawData(), open(), and vpComedi().
|
protected |
Index of calibration in file (default: 1).
Definition at line 112 of file vpForceTorqueAtiSensor.h.
Referenced by operator<<, setCalibrationFile(), and vpForceTorqueAtiSensor().
|
protectedinherited |
Max data value
Definition at line 176 of file vpComedi.h.
Referenced by getMaxData(), getPhyData(), open(), and vpComedi().
|
protectedinherited |
Number of channels
Definition at line 174 of file vpComedi.h.
Referenced by getNChannel(), getPhyData(), getRawData(), open(), setChannelNumbers(), and vpComedi().
|
protected |
Number of axis or gages available from the sensor.
Definition at line 113 of file vpForceTorqueAtiSensor.h.
Referenced by getForceTorque(), setCalibrationFile(), and vpForceTorqueAtiSensor().
|
protected |
Number of channels available from the sensor.
Definition at line 114 of file vpForceTorqueAtiSensor.h.
Referenced by bias(), getForceTorque(), open(), setCalibrationFile(), unbias(), and vpForceTorqueAtiSensor().
|
protectedinherited |
Range of a channel
Definition at line 172 of file vpComedi.h.
Referenced by getRawData(), open(), setRange(), and vpComedi().
|
protectedinherited |
Range information
Definition at line 175 of file vpComedi.h.
Referenced by getPhyData(), getPhyDataUnits(), getRangeInfo(), open(), and vpComedi().
|
protected |
Sample value used for bias.
Definition at line 115 of file vpForceTorqueAtiSensor.h.
Referenced by bias(), unbias(), and vpForceTorqueAtiSensor().
|
protectedinherited |
Input subdevice
Definition at line 171 of file vpComedi.h.
Referenced by getRawData(), getSubDevice(), open(), setSubDevice(), and vpComedi().