HEBI C++ API  3.3.0
command.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include "hebi.h"
4 
5 #include <string>
6 
7 #include "color.hpp"
8 #include "gains.hpp"
9 #include "message_helpers.hpp"
10 #include "util.hpp"
11 
12 namespace hebi {
13 
33 class Command final {
34 public:
35  enum class ControlStrategy {
37  Off,
39  DirectPWM,
42  Strategy2,
45  Strategy3,
48  Strategy4,
49  };
50 
51  enum class MstopStrategy {
53  Disabled,
55  MotorOff,
58  };
59 
60  enum class PositionLimitStrategy {
66  MotorOff,
68  Disabled,
69  };
70 
71 protected:
73  class FloatField final {
74  public:
75 #ifndef DOXYGEN_OMIT_INTERNAL
76  FloatField(HebiCommandRef& internal, HebiCommandFloatField field);
77 #endif // DOXYGEN_OMIT_INTERNAL
78  explicit operator bool() const { return has(); }
92  bool has() const;
95  float get() const;
97  void set(float value);
99  void clear();
100 
102  private:
103  HebiCommandRef& internal_;
104  HebiCommandFloatField const field_;
105  };
106 
112  class HighResAngleField final {
113  public:
114 #ifndef DOXYGEN_OMIT_INTERNAL
115  HighResAngleField(HebiCommandRef& internal, HebiCommandHighResAngleField field);
116 #endif // DOXYGEN_OMIT_INTERNAL
117  explicit operator bool() const { return has(); }
131  bool has() const;
137  double get() const;
149  void get(int64_t* revolutions, float* radian_offset) const;
154  void set(double radians);
161  void set(int64_t revolutions, float radian_offset);
163  void clear();
164 
166  private:
167  HebiCommandRef& internal_;
168  HebiCommandHighResAngleField const field_;
169  };
170 
173  class NumberedFloatField final {
174  public:
175 #ifndef DOXYGEN_OMIT_INTERNAL
176  NumberedFloatField(HebiCommandRef& internal, HebiCommandNumberedFloatField field);
177 #endif // DOXYGEN_OMIT_INTERNAL
178  bool has(size_t fieldNumber) const;
189  float get(size_t fieldNumber) const;
195  void set(size_t fieldNumber, float value);
201  void clear(size_t fieldNumber);
202 
204  private:
205  HebiCommandRef& internal_;
206  HebiCommandNumberedFloatField const field_;
207  };
208 
210  class BoolField final {
211  public:
212 #ifndef DOXYGEN_OMIT_INTERNAL
213  BoolField(HebiCommandRef& internal, HebiCommandBoolField field);
214 #endif // DOXYGEN_OMIT_INTERNAL
215  bool has() const;
219  bool get() const;
221  void set(bool value);
223  void clear();
224 
226  private:
227  HebiCommandRef& internal_;
228  HebiCommandBoolField const field_;
229  };
230 
232  class StringField final {
233  public:
234 #ifndef DOXYGEN_OMIT_INTERNAL
235  StringField(HebiCommandPtr internal, HebiCommandStringField field);
236 #endif // DOXYGEN_OMIT_INTERNAL
237  explicit operator bool() const { return has(); }
251  bool has() const;
254  std::string get() const;
256  void set(const std::string& value);
258  void clear();
259 
261  private:
262  HebiCommandPtr const internal_;
263  HebiCommandStringField const field_;
264  };
265 
267  class FlagField final {
268  public:
269 #ifndef DOXYGEN_OMIT_INTERNAL
270  FlagField(HebiCommandRef& internal, HebiCommandFlagField field);
271 #endif // DOXYGEN_OMIT_INTERNAL
272  explicit operator bool() const { return has(); }
286  bool has() const;
288  void set();
290  void clear();
291 
293  private:
294  HebiCommandRef& internal_;
295  HebiCommandFlagField const field_;
296  };
297 
299  template<typename T>
300  class EnumField final {
301  public:
302 #ifndef DOXYGEN_OMIT_INTERNAL
303  EnumField(HebiCommandRef& internal, HebiCommandEnumField field) : internal_(internal), field_(field) {}
304 #endif // DOXYGEN_OMIT_INTERNAL
305  explicit operator bool() const { return has(); }
319  bool has() const {
320  return enumGetter(internal_, field_, nullptr) == HebiStatusSuccess;
321  }
324  T get() const {
325  int32_t ret{};
326  enumGetter(internal_, field_, &ret);
327  return static_cast<T>(ret);
328  }
330  void set(T _value) {
331  int32_t value = static_cast<int32_t>(_value);
332  hebiCommandSetEnum(internal_, field_, &value);
333  }
335  void clear() {
336  hebiCommandSetEnum(internal_, field_, nullptr);
337  }
338 
340  private:
341  HebiCommandRef& internal_;
342  HebiCommandEnumField const field_;
343  };
344 
346  class IoBank final {
347  public:
348 #ifndef DOXYGEN_OMIT_INTERNAL
349  IoBank(HebiCommandRef& internal, HebiCommandIoPinBank bank);
350 #endif // DOXYGEN_OMIT_INTERNAL
351  bool hasInt(size_t pinNumber) const;
362  bool hasFloat(size_t pinNumber) const;
368  int64_t getInt(size_t pinNumber) const;
375  float getFloat(size_t pinNumber) const;
381  void setInt(size_t pinNumber, int64_t value);
387  void setFloat(size_t pinNumber, float value);
392  void clear(size_t pinNumber);
393 
395  private:
396  HebiCommandRef& internal_;
397  HebiCommandIoPinBank const bank_;
398  };
400  class LedField final {
401  public:
402 #ifndef DOXYGEN_OMIT_INTERNAL
403  LedField(HebiCommandRef& internal, HebiCommandLedField field);
404 #endif // DOXYGEN_OMIT_INTERNAL
405  bool has() const;
420  Color get() const;
426  void set(const Color& color);
431  void clear();
432 
434  private:
435  HebiCommandRef& internal_;
436  HebiCommandLedField const field_;
437  };
438 
440  class Io final {
441  public:
442 #ifndef DOXYGEN_OMIT_INTERNAL
443  Io(HebiCommandRef& internal)
444  : internal_(internal),
445  a_(internal, HebiCommandIoBankA),
446  b_(internal, HebiCommandIoBankB),
447  c_(internal, HebiCommandIoBankC),
448  d_(internal, HebiCommandIoBankD),
449  e_(internal, HebiCommandIoBankE),
450  f_(internal, HebiCommandIoBankF) {}
451 #endif // DOXYGEN_OMIT_INTERNAL
452 
453  // With all submessage and field getters: Note that the returned reference
454  // should not be used after the lifetime of this parent.
455 
456  // Subfields ----------------
457 
459  IoBank& a() { return a_; }
461  const IoBank& a() const { return a_; }
463  IoBank& b() { return b_; }
465  const IoBank& b() const { return b_; }
467  IoBank& c() { return c_; }
469  const IoBank& c() const { return c_; }
471  IoBank& d() { return d_; }
473  const IoBank& d() const { return d_; }
475  IoBank& e() { return e_; }
477  const IoBank& e() const { return e_; }
479  IoBank& f() { return f_; }
481  const IoBank& f() const { return f_; }
482 
484  private:
485  HebiCommandRef& internal_;
486 
487  IoBank a_;
488  IoBank b_;
489  IoBank c_;
490  IoBank d_;
491  IoBank e_;
492  IoBank f_;
493  };
494 
496 
498  class Settings final {
499  protected:
501  class Actuator final {
502  public:
503 #ifndef DOXYGEN_OMIT_INTERNAL
504  Actuator(HebiCommandRef& internal)
505  : position_gains_(internal, HebiCommandFloatPositionKp, HebiCommandBoolPositionDOnError),
506  velocity_gains_(internal, HebiCommandFloatVelocityKp, HebiCommandBoolVelocityDOnError),
507  effort_gains_(internal, HebiCommandFloatEffortKp, HebiCommandBoolEffortDOnError),
508  spring_constant_(internal, HebiCommandFloatSpringConstant),
509  reference_position_(internal, HebiCommandFloatReferencePosition),
510  reference_effort_(internal, HebiCommandFloatReferenceEffort),
511  velocity_limit_min_(internal, HebiCommandFloatVelocityLimitMin),
512  velocity_limit_max_(internal, HebiCommandFloatVelocityLimitMax),
513  effort_limit_min_(internal, HebiCommandFloatEffortLimitMin),
514  effort_limit_max_(internal, HebiCommandFloatEffortLimitMax),
515  position_limit_min_(internal, HebiCommandHighResAnglePositionLimitMin),
516  position_limit_max_(internal, HebiCommandHighResAnglePositionLimitMax),
517  control_strategy_(internal, HebiCommandEnumControlStrategy),
518  mstop_strategy_(internal, HebiCommandEnumMstopStrategy),
519  min_position_limit_strategy_(internal, HebiCommandEnumMinPositionLimitStrategy),
520  max_position_limit_strategy_(internal, HebiCommandEnumMaxPositionLimitStrategy) {}
521 #endif // DOXYGEN_OMIT_INTERNAL
522 
523  // With all submessage and field getters: Note that the returned reference
524  // should not be used after the lifetime of this parent.
525 
526  // Submessages ----------------
527 
529  CommandGains& positionGains() { return position_gains_; }
531  const CommandGains& positionGains() const { return position_gains_; }
533  CommandGains& velocityGains() { return velocity_gains_; }
535  const CommandGains& velocityGains() const { return velocity_gains_; }
537  CommandGains& effortGains() { return effort_gains_; }
539  const CommandGains& effortGains() const { return effort_gains_; }
540 
541  // Subfields ----------------
542 
544  FloatField& springConstant() { return spring_constant_; }
546  const FloatField& springConstant() const { return spring_constant_; }
549  FloatField& referencePosition() { return reference_position_; }
552  const FloatField& referencePosition() const { return reference_position_; }
554  FloatField& referenceEffort() { return reference_effort_; }
556  const FloatField& referenceEffort() const { return reference_effort_; }
558  FloatField& velocityLimitMin() { return velocity_limit_min_; }
560  const FloatField& velocityLimitMin() const { return velocity_limit_min_; }
562  FloatField& velocityLimitMax() { return velocity_limit_max_; }
564  const FloatField& velocityLimitMax() const { return velocity_limit_max_; }
566  FloatField& effortLimitMin() { return effort_limit_min_; }
568  const FloatField& effortLimitMin() const { return effort_limit_min_; }
570  FloatField& effortLimitMax() { return effort_limit_max_; }
572  const FloatField& effortLimitMax() const { return effort_limit_max_; }
574  HighResAngleField& positionLimitMin() { return position_limit_min_; }
576  const HighResAngleField& positionLimitMin() const { return position_limit_min_; }
578  HighResAngleField& positionLimitMax() { return position_limit_max_; }
580  const HighResAngleField& positionLimitMax() const { return position_limit_max_; }
582  EnumField<ControlStrategy>& controlStrategy() { return control_strategy_; }
584  const EnumField<ControlStrategy>& controlStrategy() const { return control_strategy_; }
586  EnumField<MstopStrategy>& mstopStrategy() { return mstop_strategy_; }
588  const EnumField<MstopStrategy>& mstopStrategy() const { return mstop_strategy_; }
590  EnumField<PositionLimitStrategy>& minPositionLimitStrategy() { return min_position_limit_strategy_; }
592  const EnumField<PositionLimitStrategy>& minPositionLimitStrategy() const { return min_position_limit_strategy_; }
594  EnumField<PositionLimitStrategy>& maxPositionLimitStrategy() { return max_position_limit_strategy_; }
596  const EnumField<PositionLimitStrategy>& maxPositionLimitStrategy() const { return max_position_limit_strategy_; }
597 
599  private:
600  CommandGains position_gains_;
601  CommandGains velocity_gains_;
602  CommandGains effort_gains_;
603 
604  FloatField spring_constant_;
605  FloatField reference_position_;
606  FloatField reference_effort_;
607  FloatField velocity_limit_min_;
608  FloatField velocity_limit_max_;
609  FloatField effort_limit_min_;
610  FloatField effort_limit_max_;
611  HighResAngleField position_limit_min_;
612  HighResAngleField position_limit_max_;
613  EnumField<ControlStrategy> control_strategy_;
614  EnumField<MstopStrategy> mstop_strategy_;
615  EnumField<PositionLimitStrategy> min_position_limit_strategy_;
616  EnumField<PositionLimitStrategy> max_position_limit_strategy_;
617  };
618 
620  class Imu final {
621  public:
622 #ifndef DOXYGEN_OMIT_INTERNAL
623  Imu(HebiCommandRef& internal)
624  : internal_(internal), accel_includes_gravity_(internal, HebiCommandBoolAccelIncludesGravity) {}
625 #endif // DOXYGEN_OMIT_INTERNAL
626 
627  // With all submessage and field getters: Note that the returned reference
628  // should not be used after the lifetime of this parent.
629 
630  // Subfields ----------------
631 
633  BoolField& accelIncludesGravity() { return accel_includes_gravity_; }
635  const BoolField& accelIncludesGravity() const { return accel_includes_gravity_; }
636 
638  private:
639  const HebiCommandRef& internal_;
640 
641  BoolField accel_includes_gravity_;
642  };
643 
644  public:
645 #ifndef DOXYGEN_OMIT_INTERNAL
646  Settings(HebiCommandPtr internal_ptr, HebiCommandRef& internal)
647  : internal_(internal),
648  actuator_(internal),
649  imu_(internal),
650  name_(internal_ptr, HebiCommandStringName),
651  family_(internal_ptr, HebiCommandStringFamily),
652  save_current_settings_(internal, HebiCommandFlagSaveCurrentSettings) {}
653 #endif // DOXYGEN_OMIT_INTERNAL
654 
655  // With all submessage and field getters: Note that the returned reference
656  // should not be used after the lifetime of this parent.
657 
658  // Submessages ----------------
659 
661  Actuator& actuator() { return actuator_; }
663  const Actuator& actuator() const { return actuator_; }
665  Imu& imu() { return imu_; }
667  const Imu& imu() const { return imu_; }
668 
669  // Subfields ----------------
670 
673  StringField& name() { return name_; }
676  const StringField& name() const { return name_; }
679  StringField& family() { return family_; }
682  const StringField& family() const { return family_; }
684  FlagField& saveCurrentSettings() { return save_current_settings_; }
686  const FlagField& saveCurrentSettings() const { return save_current_settings_; }
687 
689 
690  private:
691  HebiCommandRef& internal_;
692 
693  Actuator actuator_;
694  Imu imu_;
695 
696  StringField name_;
697  StringField family_;
698  FlagField save_current_settings_;
699  };
700 
702  class Actuator final {
703  public:
704 #ifndef DOXYGEN_OMIT_INTERNAL
705  Actuator(HebiCommandRef& internal)
706  : internal_(internal),
707  velocity_(internal, HebiCommandFloatVelocity),
708  effort_(internal, HebiCommandFloatEffort),
709  position_(internal, HebiCommandHighResAnglePosition) {}
710 #endif // DOXYGEN_OMIT_INTERNAL
711 
712  // With all submessage and field getters: Note that the returned reference
713  // should not be used after the lifetime of this parent.
714 
715  // Subfields ----------------
716 
718  FloatField& velocity() { return velocity_; }
720  const FloatField& velocity() const { return velocity_; }
722  FloatField& effort() { return effort_; }
724  const FloatField& effort() const { return effort_; }
726  HighResAngleField& position() { return position_; }
728  const HighResAngleField& position() const { return position_; }
729 
731  private:
732  const HebiCommandRef& internal_;
733 
734  FloatField velocity_;
735  FloatField effort_;
736  HighResAngleField position_;
737  };
738 
739 private:
744  HebiCommandPtr internal_;
745  HebiCommandRef internal_ref_;
746 
747 public:
748 #ifndef DOXYGEN_OMIT_INTERNAL
749 
753  Command(HebiCommandPtr);
754 #endif // DOXYGEN_OMIT_INTERNAL
755 
758  Command(Command&& other);
759 
760  // With all submessage and field getters: Note that the returned reference
761  // should not be used after the lifetime of this parent.
762 
763  // Submessages -------------------------------------------------------------
764 
766  Io& io() { return io_; }
768  const Io& io() const { return io_; }
770  Settings& settings() { return settings_; }
772  const Settings& settings() const { return settings_; }
774  Actuator& actuator() { return actuator_; }
776  const Actuator& actuator() const { return actuator_; }
777 
778  // Subfields -------------------------------------------------------------
779 
780 #ifndef DOXYGEN_OMIT_INTERNAL
781  NumberedFloatField& debug() { return debug_; }
784  const NumberedFloatField& debug() const { return debug_; }
785 #endif // DOXYGEN_OMIT_INTERNAL
786  StringField& appendLog() { return append_log_; }
789  const StringField& appendLog() const { return append_log_; }
791  FlagField& reset() { return reset_; }
793  const FlagField& reset() const { return reset_; }
795  FlagField& boot() { return boot_; }
797  const FlagField& boot() const { return boot_; }
799  FlagField& stopBoot() { return stop_boot_; }
801  const FlagField& stopBoot() const { return stop_boot_; }
803  FlagField& clearLog() { return clear_log_; }
805  const FlagField& clearLog() const { return clear_log_; }
807  LedField& led() { return led_; }
809  const LedField& led() const { return led_; }
810 
815 
816  /* Disable move assigment operator. */
817  Command& operator=(Command&& other) = delete;
818 
819 private:
820  Io io_;
821  Settings settings_;
822  Actuator actuator_;
823 
824  NumberedFloatField debug_;
825  StringField append_log_;
826  FlagField reset_;
827  FlagField boot_;
828  FlagField stop_boot_;
829  FlagField clear_log_;
830  LedField led_;
831 };
832 
833 } // namespace hebi
const FloatField & referencePosition() const
Definition: command.hpp:552
void clear()
Removes any currently set value for this field.
Definition: command.cpp:108
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:200
bool has() const
True if (and only if) the field has a value.
Definition: command.hpp:319
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:461
IoBank & f()
I/O pin bank f (pins 1-8 available)
Definition: command.hpp:479
FlagField & reset()
Restart the module.
Definition: command.hpp:791
FlagField & saveCurrentSettings()
Indicates if the module should save the current values of all of its settings.
Definition: command.hpp:684
IoBank & d()
I/O pin bank d (pins 1-8 available)
Definition: command.hpp:471
const EnumField< PositionLimitStrategy > & minPositionLimitStrategy() const
The position limit strategy (at the minimum position) for the actuator.
Definition: command.hpp:592
MstopStrategy
Definition: command.hpp:51
const FloatField & effortLimitMin() const
The firmware safety limit for the minimum allowed effort.
Definition: command.hpp:568
const FloatField & velocityLimitMin() const
The firmware safety limit for the minimum allowed velocity.
Definition: command.hpp:560
HighResAngleField & positionLimitMax()
The firmware safety limit for the maximum allowed position.
Definition: command.hpp:578
#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:210
Actuator & actuator()
Actuator-specific commands.
Definition: command.hpp:774
Actuator-specific commands.
Definition: command.hpp:702
void hebiCommandSetEnum(HebiCommandRef &command, HebiCommandEnumField field, const int32_t *value)
Definition: message_helpers.cpp:388
Io & io()
Any available digital or analog output pins on the device.
Definition: command.hpp:766
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:724
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:770
const Io & io() const
Any available digital or analog output pins on the device.
Definition: command.hpp:768
FloatField & springConstant()
The spring constant of the module.
Definition: command.hpp:544
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:566
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:346
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:795
Actuator & actuator()
Actuator-specific settings, such as controller gains.
Definition: command.hpp:661
const HighResAngleField & position() const
Position of the module output (post-spring), in radians.
Definition: command.hpp:728
const IoBank & d() const
I/O pin bank d (pins 1-8 available)
Definition: command.hpp:473
void setInt(size_t pinNumber, int64_t value)
Sets the particular pin to a integer value (representing a digital output).
Definition: command.cpp:170
StringField & family()
Definition: command.hpp:679
Command objects have various fields that can be set; when sent to the module, these fields control in...
Definition: command.hpp:33
const BoolField & accelIncludesGravity() const
Whether to include acceleration due to gravity in acceleration feedback.
Definition: command.hpp:635
IoBank & a()
I/O pin bank a (pins 1-8 available)
Definition: command.hpp:459
A message field representable by a std::string.
Definition: command.hpp:232
BoolField & accelIncludesGravity()
Whether to include acceleration due to gravity in acceleration feedback.
Definition: command.hpp:633
Definition: bit_set.hpp:5
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:117
void set()
Sets this flag.
Definition: command.cpp:144
A message field for interfacing with an LED.
Definition: command.hpp:400
const FlagField & clearLog() const
Clears the log message on the module.
Definition: command.hpp:805
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:572
The motor is not given power (equivalent to a 0 PWM value)
const StringField & name() const
Definition: command.hpp:676
CommandGains & effortGains()
Controller gains for the effort PID loop.
Definition: command.hpp:537
#define HEBI_DISABLE_COPY_MOVE(Class)
Definition: util.hpp:6
const FlagField & reset() const
Restart the module.
Definition: command.hpp:793
const IoBank & c() const
I/O pin bank c (pins 1-8 available)
Definition: command.hpp:469
IoBank & c()
I/O pin bank c (pins 1-8 available)
Definition: command.hpp:467
const CommandGains & effortGains() const
Controller gains for the effort PID loop.
Definition: command.hpp:539
HighResAngleField & position()
Position of the module output (post-spring), in radians.
Definition: command.hpp:726
const FloatField & springConstant() const
The spring constant of the module.
Definition: command.hpp:546
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:584
CommandGains & velocityGains()
Controller gains for the velocity PID loop.
Definition: command.hpp:533
const IoBank & b() const
I/O pin bank b (pins 1-8 available)
Definition: command.hpp:465
Actuator-specific settings, such as controller gains.
Definition: command.hpp:501
Module settings that are typically changed at a slower rate.
Definition: command.hpp:498
const CommandGains & positionGains() const
Controller gains for the position PID loop.
Definition: command.hpp:531
FloatField & referencePosition()
Definition: command.hpp:549
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:772
A two-state message field (either set/true or cleared/false).
Definition: command.hpp:267
void set(T _value)
Sets the field to a given value.
Definition: command.hpp:330
bool has() const
Returns true if the flag is set, false if it is cleared.
Definition: command.cpp:142
StringField & appendLog()
Appends to the current log message on the module.
Definition: command.hpp:787
const Actuator & actuator() const
Actuator-specific settings, such as controller gains.
Definition: command.hpp:663
IoBank & b()
I/O pin bank b (pins 1-8 available)
Definition: command.hpp:463
const IoBank & e() const
I/O pin bank e (pins 1-8 available)
Definition: command.hpp:477
A message field containing a numbered set of single-precision floating point values.
Definition: command.hpp:173
Triggering the M-Stop has no effect.
HebiStatusCode enumGetter(const RefT &ref, MetadataT &metadata, int field, int32_t *value)
Definition: message_helpers.cpp:298
const StringField & family() const
Definition: command.hpp:682
Color get() const
Returns the current LED command.
Definition: command.cpp:189
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:158
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:797
FloatField & effortLimitMax()
The firmware safety limit for the maximum allowed effort.
Definition: command.hpp:570
EnumField< ControlStrategy > & controlStrategy()
How the position, velocity, and effort PID loops are connected in order to control motor PWM.
Definition: command.hpp:582
const LedField & led() const
The module's LED.
Definition: command.hpp:809
HighResAngleField & positionLimitMin()
The firmware safety limit for the minimum allowed position.
Definition: command.hpp:574
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:164
FloatField & velocity()
Velocity of the module output (post-spring), in radians/second.
Definition: command.hpp:718
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:440
const HighResAngleField & positionLimitMin() const
The firmware safety limit for the minimum allowed position.
Definition: command.hpp:576
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:554
ControlStrategy
Definition: command.hpp:35
const EnumField< PositionLimitStrategy > & maxPositionLimitStrategy() const
The position limit strategy (at the maximum position) for the actuator.
Definition: command.hpp:596
const HighResAngleField & positionLimitMax() const
The firmware safety limit for the maximum allowed position.
Definition: command.hpp:580
const Imu & imu() const
IMU-specific settings.
Definition: command.hpp:667
const FloatField & referenceEffort() const
The internal effort reference offset (setting this matches the current effort to the given reference ...
Definition: command.hpp:556
const FlagField & saveCurrentSettings() const
Indicates if the module should save the current values of all of its settings.
Definition: command.hpp:686
void clear()
Removes any currently set value for this field.
Definition: command.hpp:335
IoBank & e()
I/O pin bank e (pins 1-8 available)
Definition: command.hpp:475
FlagField & clearLog()
Clears the log message on the module.
Definition: command.hpp:803
EnumField< PositionLimitStrategy > & maxPositionLimitStrategy()
The position limit strategy (at the maximum position) for the actuator.
Definition: command.hpp:594
const EnumField< MstopStrategy > & mstopStrategy() const
The motion stop strategy for the actuator.
Definition: command.hpp:588
T get() const
If the field has a value, returns that value; otherwise, returns a default.
Definition: command.hpp:324
void clear()
Removes any currently set value for this field, so that the module maintains its previous state of LE...
Definition: command.cpp:204
Command(Command &&other)
Move constructor (necessary for containment in STL template classes)
Definition: command.cpp:208
A message field for an angle measurement which does not lose precision at very high angles.
Definition: command.hpp:112
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:665
const FlagField & stopBoot() const
Stop the module from automatically booting into application.
Definition: command.hpp:801
void clear()
Removes any currently set value for this field.
Definition: command.cpp:137
EnumField< MstopStrategy > & mstopStrategy()
The motion stop strategy for the actuator.
Definition: command.hpp:586
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:113
void set(bool value)
Sets the field to a given value.
Definition: command.cpp:103
const FloatField & velocity() const
Velocity of the module output (post-spring), in radians/second.
Definition: command.hpp:720
const Actuator & actuator() const
Actuator-specific commands.
Definition: command.hpp:776
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:562
const StringField & appendLog() const
Appends to the current log message on the module.
Definition: command.hpp:789
const FloatField & velocityLimitMax() const
The firmware safety limit for the maximum allowed velocity.
Definition: command.hpp:564
IMU-specific settings.
Definition: command.hpp:620
StringField & name()
Definition: command.hpp:673
LedField & led()
The module's LED.
Definition: command.hpp:807
void setFloat(size_t pinNumber, float value)
Sets the particular pin to a floating point value (representing a PWM output).
Definition: command.cpp:174
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:185
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:154
const CommandGains & velocityGains() const
Controller gains for the velocity PID loop.
Definition: command.hpp:535
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:150
const IoBank & f() const
I/O pin bank f (pins 1-8 available)
Definition: command.hpp:481
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:529
A message field representable by a single-precision floating point value.
Definition: command.hpp:73
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:146
Command & operator=(Command &&other)=delete
PositionLimitStrategy
Definition: command.hpp:60
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:558
void clear(size_t pinNumber)
Removes any currently set value for this pin.
Definition: command.cpp:178
void set(const std::string &value)
Sets the field to a given value.
Definition: command.cpp:131
EnumField< PositionLimitStrategy > & minPositionLimitStrategy()
The position limit strategy (at the minimum position) for the actuator.
Definition: command.hpp:590
FlagField & stopBoot()
Stop the module from automatically booting into application.
Definition: command.hpp:799
A message field representable by an enum of a given type.
Definition: command.hpp:300
FloatField & effort()
Effort at the module output; units vary (e.g., N * m for rotational joints and N for linear stages).
Definition: command.hpp:722