Hekateros  3.4.3
RoadNarrows Robotics Robot Arm Project
hekateros::HekSpecServo_T Struct Reference

Robotic servo specification. More...

#include <hekSpec.h>

Public Member Functions

HekSpecServo_T operator= (const HekSpecServo_T &rhs)
 Assignment operator. More...
 

Public Attributes

int m_nServoId
 servo id
 
bool m_bMaster
 servo is [not] master in doulbe servo joints
 
bool m_bIsContinuous
 servo should [not] be configured in 360 mode
 
int m_nDir
 normalize cw/ccw direction.
 
double m_fTorqueLimitPct
 torque limit(%). Set to 0 for no limit
 

Detailed Description

Robotic servo specification.

Definition at line 199 of file hekSpec.h.

Member Function Documentation

HekSpecServo_T hekateros::HekSpecServo_T::operator= ( const HekSpecServo_T rhs)
inline

Assignment operator.

Parameters
rhsRight hand side object.
Returns
this.

Definition at line 208 of file hekSpec.h.

References m_bIsContinuous, m_bMaster, m_fTorqueLimitPct, m_nDir, and m_nServoId.

209  {
210  m_nServoId = rhs.m_nServoId;
211  m_bMaster = rhs.m_bMaster;
212  m_bIsContinuous = rhs.m_bIsContinuous;
213  m_nDir = rhs.m_nDir;
214  m_fTorqueLimitPct = rhs.m_fTorqueLimitPct;
215  }
bool m_bMaster
servo is [not] master in doulbe servo joints
Definition: hekSpec.h:218
bool m_bIsContinuous
servo should [not] be configured in 360 mode
Definition: hekSpec.h:219
double m_fTorqueLimitPct
torque limit(%). Set to 0 for no limit
Definition: hekSpec.h:221
int m_nDir
normalize cw/ccw direction.
Definition: hekSpec.h:220
int m_nServoId
servo id
Definition: hekSpec.h:217

The documentation for this struct was generated from the following file: