74 #ifndef DOXYGEN_OMIT_INTERNAL 75 FloatField(HebiCommandPtr
internal, HebiCommandFloatField field);
76 #endif // DOXYGEN_OMIT_INTERNAL 77 explicit operator bool()
const {
return has(); }
96 void set(
float value);
102 HebiCommandPtr
const internal_;
103 HebiCommandFloatField
const field_;
113 #ifndef DOXYGEN_OMIT_INTERNAL 115 #endif // DOXYGEN_OMIT_INTERNAL 116 explicit operator bool()
const {
return has(); }
148 void get(int64_t* revolutions,
float* radian_offset)
const;
153 void set(
double radians);
160 void set(int64_t revolutions,
float radian_offset);
166 HebiCommandPtr
const internal_;
167 HebiCommandHighResAngleField
const field_;
174 #ifndef DOXYGEN_OMIT_INTERNAL 176 #endif // DOXYGEN_OMIT_INTERNAL 177 bool has(
size_t fieldNumber)
const;
188 float get(
size_t fieldNumber)
const;
194 void set(
size_t fieldNumber,
float value);
200 void clear(
size_t fieldNumber);
204 HebiCommandPtr
const internal_;
205 HebiCommandNumberedFloatField
const field_;
211 #ifndef DOXYGEN_OMIT_INTERNAL 212 BoolField(HebiCommandPtr
internal, HebiCommandBoolField field);
213 #endif // DOXYGEN_OMIT_INTERNAL 220 void set(
bool value);
226 HebiCommandPtr
const internal_;
227 HebiCommandBoolField
const field_;
233 #ifndef DOXYGEN_OMIT_INTERNAL 234 StringField(HebiCommandPtr
internal, HebiCommandStringField field);
235 #endif // DOXYGEN_OMIT_INTERNAL 236 explicit operator bool()
const {
return has(); }
253 std::string
get()
const;
255 void set(
const std::string& value);
261 HebiCommandPtr
const internal_;
262 HebiCommandStringField
const field_;
268 #ifndef DOXYGEN_OMIT_INTERNAL 269 FlagField(HebiCommandPtr
internal, HebiCommandFlagField field);
270 #endif // DOXYGEN_OMIT_INTERNAL 271 explicit operator bool()
const {
return has(); }
293 HebiCommandPtr
const internal_;
294 HebiCommandFlagField
const field_;
301 #ifndef DOXYGEN_OMIT_INTERNAL 302 EnumField(HebiCommandPtr
internal, HebiCommandEnumField field) : internal_(
internal), field_(field) {}
303 #endif // DOXYGEN_OMIT_INTERNAL 304 explicit operator bool()
const {
return has(); }
318 bool has()
const {
return (hebiCommandGetEnum(internal_, field_,
nullptr) == HebiStatusSuccess); }
323 hebiCommandGetEnum(internal_, field_, &ret);
324 return static_cast<T>(ret);
328 int32_t value = static_cast<int32_t>(_value);
329 hebiCommandSetEnum(internal_, field_, &value);
332 void clear() { hebiCommandSetEnum(internal_, field_,
nullptr); }
336 HebiCommandPtr
const internal_;
337 HebiCommandEnumField
const field_;
343 #ifndef DOXYGEN_OMIT_INTERNAL 344 IoBank(HebiCommandPtr
internal, HebiCommandIoPinBank bank);
345 #endif // DOXYGEN_OMIT_INTERNAL 346 bool hasInt(
size_t pinNumber)
const;
357 bool hasFloat(
size_t pinNumber)
const;
363 int64_t
getInt(
size_t pinNumber)
const;
370 float getFloat(
size_t pinNumber)
const;
376 void setInt(
size_t pinNumber, int64_t value);
382 void setFloat(
size_t pinNumber,
float value);
387 void clear(
size_t pinNumber);
391 HebiCommandPtr
const internal_;
392 HebiCommandIoPinBank
const bank_;
397 #ifndef DOXYGEN_OMIT_INTERNAL 398 LedField(HebiCommandPtr
internal, HebiCommandLedField field);
399 #endif // DOXYGEN_OMIT_INTERNAL 430 HebiCommandPtr
const internal_;
431 HebiCommandLedField
const field_;
437 #ifndef DOXYGEN_OMIT_INTERNAL 438 Io(HebiCommandPtr
internal)
439 : internal_(
internal),
440 a_(
internal, HebiCommandIoBankA),
441 b_(
internal, HebiCommandIoBankB),
442 c_(
internal, HebiCommandIoBankC),
443 d_(
internal, HebiCommandIoBankD),
444 e_(
internal, HebiCommandIoBankE),
445 f_(
internal, HebiCommandIoBankF) {}
446 #endif // DOXYGEN_OMIT_INTERNAL 480 HebiCommandPtr
const internal_;
498 #ifndef DOXYGEN_OMIT_INTERNAL 500 : internal_(
internal),
501 position_gains_(
internal, HebiCommandFloatPositionKp, HebiCommandBoolPositionDOnError),
502 velocity_gains_(
internal, HebiCommandFloatVelocityKp, HebiCommandBoolVelocityDOnError),
503 effort_gains_(
internal, HebiCommandFloatEffortKp, HebiCommandBoolEffortDOnError),
504 spring_constant_(
internal, HebiCommandFloatSpringConstant),
505 reference_position_(
internal, HebiCommandFloatReferencePosition),
506 reference_effort_(
internal, HebiCommandFloatReferenceEffort),
507 velocity_limit_min_(
internal, HebiCommandFloatVelocityLimitMin),
508 velocity_limit_max_(
internal, HebiCommandFloatVelocityLimitMax),
509 effort_limit_min_(
internal, HebiCommandFloatEffortLimitMin),
510 effort_limit_max_(
internal, HebiCommandFloatEffortLimitMax),
511 position_limit_min_(
internal, HebiCommandHighResAnglePositionLimitMin),
512 position_limit_max_(
internal, HebiCommandHighResAnglePositionLimitMax),
513 control_strategy_(
internal, HebiCommandEnumControlStrategy),
514 mstop_strategy_(
internal, HebiCommandEnumMstopStrategy),
515 min_position_limit_strategy_(
internal, HebiCommandEnumMinPositionLimitStrategy),
516 max_position_limit_strategy_(
internal, HebiCommandEnumMaxPositionLimitStrategy) {}
517 #endif // DOXYGEN_OMIT_INTERNAL 596 HebiCommandPtr
const internal_;
620 #ifndef DOXYGEN_OMIT_INTERNAL 621 Imu(HebiCommandPtr
internal)
622 : internal_(
internal), accel_includes_gravity_(
internal, HebiCommandBoolAccelIncludesGravity) {}
623 #endif // DOXYGEN_OMIT_INTERNAL 637 HebiCommandPtr
const internal_;
643 #ifndef DOXYGEN_OMIT_INTERNAL 645 : internal_(internal),
648 name_(internal, HebiCommandStringName),
649 family_(internal, HebiCommandStringFamily),
650 save_current_settings_(internal, HebiCommandFlagSaveCurrentSettings) {}
651 #endif // DOXYGEN_OMIT_INTERNAL 688 HebiCommandPtr
const internal_;
701 #ifndef DOXYGEN_OMIT_INTERNAL 703 : internal_(
internal),
704 velocity_(
internal, HebiCommandFloatVelocity),
705 effort_(
internal, HebiCommandFloatEffort),
706 position_(
internal, HebiCommandHighResAnglePosition) {}
707 #endif // DOXYGEN_OMIT_INTERNAL 729 HebiCommandPtr
const internal_;
741 HebiCommandPtr internal_;
744 #ifndef DOXYGEN_OMIT_INTERNAL 750 #endif // DOXYGEN_OMIT_INTERNAL 764 const Io&
io()
const {
return io_; }
776 #ifndef DOXYGEN_OMIT_INTERNAL 777 NumberedFloatField& debug() {
return debug_; }
780 const NumberedFloatField& debug()
const {
return debug_; }
781 #endif // DOXYGEN_OMIT_INTERNAL 782 StringField&
appendLog() {
return append_log_; }
820 NumberedFloatField debug_;
821 StringField append_log_;
824 FlagField stop_boot_;
825 FlagField clear_log_;
const FloatField & referencePosition() const
Definition: command.hpp:548
void clear()
Removes any currently set value for this field.
Definition: command.cpp:110
void set(const Color &color)
Commands a color that overrides the module's control of the LED (if the alpha channel is 255),...
Definition: command.cpp:199
bool has() const
True if (and only if) the field has a value.
Definition: command.hpp:318
void clear()
Removes any currently set value for this field.
Definition: command.cpp:67
const IoBank & a() const
I/O pin bank a (pins 1-8 available)
Definition: command.hpp:456
IoBank & f()
I/O pin bank f (pins 1-8 available)
Definition: command.hpp:474
FlagField & reset()
Restart the module.
Definition: command.hpp:787
FlagField & saveCurrentSettings()
Indicates if the module should save the current values of all of its settings.
Definition: command.hpp:682
IoBank & d()
I/O pin bank d (pins 1-8 available)
Definition: command.hpp:466
const EnumField< PositionLimitStrategy > & minPositionLimitStrategy() const
The position limit strategy (at the minimum position) for the actuator.
Definition: command.hpp:588
MstopStrategy
Definition: command.hpp:50
const FloatField & effortLimitMin() const
The firmware safety limit for the minimum allowed effort.
Definition: command.hpp:564
const FloatField & velocityLimitMin() const
The firmware safety limit for the minimum allowed velocity.
Definition: command.hpp:556
HighResAngleField & positionLimitMax()
The firmware safety limit for the maximum allowed position.
Definition: command.hpp:574
#define HEBI_DISABLE_COPY(Class)
Definition: util.hpp:16
void clear()
Removes any currently set value for this field.
Definition: command.cpp:27
A message field representable by a bool value.
Definition: command.hpp:209
Actuator & actuator()
Actuator-specific commands.
Definition: command.hpp:770
Actuator-specific commands.
Definition: command.hpp:699
Io & io()
Any available digital or analog output pins on the device.
Definition: command.hpp:762
const FloatField & effort() const
Effort at the module output; units vary (e.g., N * m for rotational joints and N for linear stages).
Definition: command.hpp:721
Triggering the M-Stop results in the control strategy being set to 'off'. Remains 'off' until changed...
Settings & settings()
Module settings that are typically changed at a slower rate.
Definition: command.hpp:766
const Io & io() const
Any available digital or analog output pins on the device.
Definition: command.hpp:764
FloatField & springConstant()
The spring constant of the module.
Definition: command.hpp:540
bool get() const
If the field has a value, returns that value; otherwise, returns false.
Definition: command.cpp:97
FloatField & effortLimitMin()
The firmware safety limit for the minimum allowed effort.
Definition: command.hpp:562
bool has() const
True if (and only if) the field has a value.
Definition: command.cpp:95
A message field for interfacing with a bank of I/O pins.
Definition: command.hpp:341
Triggering the M-Stop results in the motor holding the motor position. Operations resume to normal on...
FlagField & boot()
Boot the module from bootloader into application.
Definition: command.hpp:791
Actuator & actuator()
Actuator-specific settings, such as controller gains.
Definition: command.hpp:659
const HighResAngleField & position() const
Position of the module output (post-spring), in radians.
Definition: command.hpp:725
const IoBank & d() const
I/O pin bank d (pins 1-8 available)
Definition: command.hpp:468
void setInt(size_t pinNumber, int64_t value)
Sets the particular pin to a integer value (representing a digital output).
Definition: command.cpp:172
StringField & family()
Definition: command.hpp:677
Command objects have various fields that can be set; when sent to the module, these fields control in...
Definition: command.hpp:32
const BoolField & accelIncludesGravity() const
Whether to include acceleration due to gravity in acceleration feedback.
Definition: command.hpp:633
IoBank & a()
I/O pin bank a (pins 1-8 available)
Definition: command.hpp:454
A message field representable by a std::string.
Definition: command.hpp:231
BoolField & accelIncludesGravity()
Whether to include acceleration due to gravity in acceleration feedback.
Definition: command.hpp:631
void clear(size_t fieldNumber)
Removes any currently set value for the numbered subvalue of this field.
Definition: command.cpp:88
void set(size_t fieldNumber, float value)
Sets the particular numbered subvalue of this field to a given value.
Definition: command.cpp:84
std::string get() const
If the field has a value, returns a copy of that value; otherwise, returns a default.
Definition: command.cpp:119
void set()
Sets this flag.
Definition: command.cpp:146
A message field for interfacing with an LED.
Definition: command.hpp:395
const FlagField & clearLog() const
Clears the log message on the module.
Definition: command.hpp:801
Exceeding the position limit results in the actuator holding the position. Needs to be manually set t...
const FloatField & effortLimitMax() const
The firmware safety limit for the maximum allowed effort.
Definition: command.hpp:568
The motor is not given power (equivalent to a 0 PWM value)
const StringField & name() const
Definition: command.hpp:674
CommandGains & effortGains()
Controller gains for the effort PID loop.
Definition: command.hpp:533
#define HEBI_DISABLE_COPY_MOVE(Class)
Definition: util.hpp:6
const FlagField & reset() const
Restart the module.
Definition: command.hpp:789
const IoBank & c() const
I/O pin bank c (pins 1-8 available)
Definition: command.hpp:464
IoBank & c()
I/O pin bank c (pins 1-8 available)
Definition: command.hpp:462
const CommandGains & effortGains() const
Controller gains for the effort PID loop.
Definition: command.hpp:535
HighResAngleField & position()
Position of the module output (post-spring), in radians.
Definition: command.hpp:723
const FloatField & springConstant() const
The spring constant of the module.
Definition: command.hpp:542
Exceeding the position limit results in the control strategy being set to 'off'. Remains 'off' until ...
const EnumField< ControlStrategy > & controlStrategy() const
How the position, velocity, and effort PID loops are connected in order to control motor PWM.
Definition: command.hpp:580
CommandGains & velocityGains()
Controller gains for the velocity PID loop.
Definition: command.hpp:529
const IoBank & b() const
I/O pin bank b (pins 1-8 available)
Definition: command.hpp:460
Actuator-specific settings, such as controller gains.
Definition: command.hpp:496
Module settings that are typically changed at a slower rate.
Definition: command.hpp:493
const CommandGains & positionGains() const
Controller gains for the position PID loop.
Definition: command.hpp:527
FloatField & referencePosition()
Definition: command.hpp:545
bool has() const
True if (and only if) the field has a value.
Definition: command.cpp:32
const Settings & settings() const
Module settings that are typically changed at a slower rate.
Definition: command.hpp:768
A two-state message field (either set/true or cleared/false).
Definition: command.hpp:266
void set(T _value)
Sets the field to a given value.
Definition: command.hpp:327
bool has() const
Returns true if the flag is set, false if it is cleared.
Definition: command.cpp:144
StringField & appendLog()
Appends to the current log message on the module.
Definition: command.hpp:783
const Actuator & actuator() const
Actuator-specific settings, such as controller gains.
Definition: command.hpp:661
IoBank & b()
I/O pin bank b (pins 1-8 available)
Definition: command.hpp:458
const IoBank & e() const
I/O pin bank e (pins 1-8 available)
Definition: command.hpp:472
A message field containing a numbered set of single-precision floating point values.
Definition: command.hpp:172
Triggering the M-Stop has no effect.
const StringField & family() const
Definition: command.hpp:680
Color get() const
Returns the current LED command.
Definition: command.cpp:192
int64_t getInt(size_t pinNumber) const
If this numbered pin in this bank has an integer (e.g., digital) value, returns that value; otherwise...
Definition: command.cpp:160
double get() const
If the field has a value, returns that value as a double; otherwise, returns a default.
Definition: command.cpp:36
const FlagField & boot() const
Boot the module from bootloader into application.
Definition: command.hpp:793
FloatField & effortLimitMax()
The firmware safety limit for the maximum allowed effort.
Definition: command.hpp:566
EnumField< ControlStrategy > & controlStrategy()
How the position, velocity, and effort PID loops are connected in order to control motor PWM.
Definition: command.hpp:578
const LedField & led() const
The module's LED.
Definition: command.hpp:805
HighResAngleField & positionLimitMin()
The firmware safety limit for the minimum allowed position.
Definition: command.hpp:570
float getFloat(size_t pinNumber) const
If this numbered pin in this bank has an floating point (e.g., analog or PWM) value,...
Definition: command.cpp:166
FloatField & velocity()
Velocity of the module output (post-spring), in radians/second.
Definition: command.hpp:715
Exceeding the position limit results in a virtual spring that pushes the actuator back to within the ...
Any available digital or analog output pins on the device.
Definition: command.hpp:435
const HighResAngleField & positionLimitMin() const
The firmware safety limit for the minimum allowed position.
Definition: command.hpp:572
float get() const
If the field has a value, returns that value; otherwise, returns a default.
Definition: command.cpp:17
FloatField & referenceEffort()
The internal effort reference offset (setting this matches the current effort to the given reference ...
Definition: command.hpp:550
ControlStrategy
Definition: command.hpp:34
const EnumField< PositionLimitStrategy > & maxPositionLimitStrategy() const
The position limit strategy (at the maximum position) for the actuator.
Definition: command.hpp:592
const HighResAngleField & positionLimitMax() const
The firmware safety limit for the maximum allowed position.
Definition: command.hpp:576
const Imu & imu() const
IMU-specific settings.
Definition: command.hpp:665
const FloatField & referenceEffort() const
The internal effort reference offset (setting this matches the current effort to the given reference ...
Definition: command.hpp:552
const FlagField & saveCurrentSettings() const
Indicates if the module should save the current values of all of its settings.
Definition: command.hpp:684
void clear()
Removes any currently set value for this field.
Definition: command.hpp:332
IoBank & e()
I/O pin bank e (pins 1-8 available)
Definition: command.hpp:470
FlagField & clearLog()
Clears the log message on the module.
Definition: command.hpp:799
EnumField< PositionLimitStrategy > & maxPositionLimitStrategy()
The position limit strategy (at the maximum position) for the actuator.
Definition: command.hpp:590
const EnumField< MstopStrategy > & mstopStrategy() const
The motion stop strategy for the actuator.
Definition: command.hpp:584
T get() const
If the field has a value, returns that value; otherwise, returns a default.
Definition: command.hpp:321
void clear()
Removes any currently set value for this field, so that the module maintains its previous state of LE...
Definition: command.cpp:207
Command(Command &&other)
Move constructor (necessary for containment in STL template classes)
Definition: command.cpp:209
A message field for an angle measurement which does not lose precision at very high angles.
Definition: command.hpp:111
void set(double radians)
Sets the field to a given double value (in radians). Note that double precision floating point number...
Definition: command.cpp:52
Imu & imu()
IMU-specific settings.
Definition: command.hpp:663
const FlagField & stopBoot() const
Stop the module from automatically booting into application.
Definition: command.hpp:797
void clear()
Removes any currently set value for this field.
Definition: command.cpp:139
EnumField< MstopStrategy > & mstopStrategy()
The motion stop strategy for the actuator.
Definition: command.hpp:582
void set(float value)
Sets the field to a given value.
Definition: command.cpp:25
bool has() const
True if (and only if) the field has a value.
Definition: command.cpp:115
void set(bool value)
Sets the field to a given value.
Definition: command.cpp:105
const FloatField & velocity() const
Velocity of the module output (post-spring), in radians/second.
Definition: command.hpp:717
const Actuator & actuator() const
Actuator-specific commands.
Definition: command.hpp:772
float get(size_t fieldNumber) const
If the particular numbered subvalue of this field has a value, returns that value; otherwise returns ...
Definition: command.cpp:76
FloatField & velocityLimitMax()
The firmware safety limit for the maximum allowed velocity.
Definition: command.hpp:558
const StringField & appendLog() const
Appends to the current log message on the module.
Definition: command.hpp:785
const FloatField & velocityLimitMax() const
The firmware safety limit for the maximum allowed velocity.
Definition: command.hpp:560
IMU-specific settings.
Definition: command.hpp:618
StringField & name()
Definition: command.hpp:671
LedField & led()
The module's LED.
Definition: command.hpp:803
void setFloat(size_t pinNumber, float value)
Sets the particular pin to a floating point value (representing a PWM output).
Definition: command.cpp:176
Exceeding the position limit has no effect.
bool has() const
Returns true if the LED command has been set, and false otherwise.
Definition: command.cpp:187
bool hasFloat(size_t pinNumber) const
True if (and only if) the particular numbered pin in this bank has an floating point (e....
Definition: command.cpp:156
const CommandGains & velocityGains() const
Controller gains for the velocity PID loop.
Definition: command.hpp:531
bool hasInt(size_t pinNumber) const
True if (and only if) the particular numbered pin in this bank has an integer (e.g....
Definition: command.cpp:152
const IoBank & f() const
I/O pin bank f (pins 1-8 available)
Definition: command.hpp:476
A direct PWM value (-1 to 1) can be sent to the motor (subject to onboard safety limiting).
Structure to describe an RGB color.
Definition: color.hpp:8
CommandGains & positionGains()
Controller gains for the position PID loop.
Definition: command.hpp:525
A message field representable by a single-precision floating point value.
Definition: command.hpp:72
bool has(size_t fieldNumber) const
True if (and only if) the particular numbered subvalue of this field has a value.
Definition: command.cpp:72
void clear()
Clears this flag (e.g., sets it to false/off).
Definition: command.cpp:148
Command & operator=(Command &&other)=delete
PositionLimitStrategy
Definition: command.hpp:59
bool has() const
True if (and only if) the field has a value.
Definition: command.cpp:15
FloatField & velocityLimitMin()
The firmware safety limit for the minimum allowed velocity.
Definition: command.hpp:554
void clear(size_t pinNumber)
Removes any currently set value for this pin.
Definition: command.cpp:180
void set(const std::string &value)
Sets the field to a given value.
Definition: command.cpp:133
EnumField< PositionLimitStrategy > & minPositionLimitStrategy()
The position limit strategy (at the minimum position) for the actuator.
Definition: command.hpp:586
FlagField & stopBoot()
Stop the module from automatically booting into application.
Definition: command.hpp:795
A message field representable by an enum of a given type.
Definition: command.hpp:299
FloatField & effort()
Effort at the module output; units vary (e.g., N * m for rotational joints and N for linear stages).
Definition: command.hpp:719