LidarSetMotorMessage.h
Go to the documentation of this file.
1 
40 #ifndef LibMultiSense_LidarSetMotorMessage
41 #define LibMultiSense_LidarSetMotorMessage
42 
44 
45 namespace crl {
46 namespace multisense {
47 namespace details {
48 namespace wire {
49 
51 public:
54 
55  //
56  // Desired output RPM
57 
58  float rpm;
59 
60  //
61  // Contructors
62 
64  LidarSetMotor() : rpm(0.0) {};
65  LidarSetMotor(float f) : rpm(f) {};
66 
67  //
68  // Serialization routine
69 
70  template<class Archive>
71  void serialize(Archive& message,
72  const VersionType version)
73  {
74  (void) version;
75  message & rpm;
76  }
77 };
78 
79 }}}} // namespaces
80 
81 #endif
static CRL_CONSTEXPR IdType ID_CMD_LIDAR_SET_MOTOR
Definition: Protocol.h:164
Definition: channel.cc:56
LidarSetMotor(utility::BufferStreamReader &r, VersionType v)
void serialize(Archive &message, const VersionType version)
#define CRL_CONSTEXPR
Definition: Portability.hh:51


multisense_lib
Author(s):
autogenerated on Sun Mar 14 2021 02:34:50