Class AccumulatedSteps
- Namespace
- Harp.StepperDriver
- Assembly
- Harp.StepperDriver.dll
Represents a register that contains the accumulated steps of all motors. Write a value to set the accumulated steps. An event will be emitted with a dispatch rate defined in AccumulatedStepsSamplingRate.
public class AccumulatedSteps
- Inheritance
-
AccumulatedSteps
- Inherited Members
Fields
Address
Represents the address of the AccumulatedSteps register. This field is constant.
public const int Address = 90
Field Value
RegisterLength
Represents the length of the AccumulatedSteps register. This field is constant.
public const int RegisterLength = 4
Field Value
RegisterType
Represents the payload type of the AccumulatedSteps register. This field is constant.
public const PayloadType RegisterType = S32
Field Value
Methods
FromPayload(MessageType, AccumulatedStepsPayload)
Returns a Harp message for the AccumulatedSteps register.
public static HarpMessage FromPayload(MessageType messageType, AccumulatedStepsPayload value)
Parameters
messageType
MessageTypeThe type of the Harp message.
value
AccumulatedStepsPayloadThe value to be stored in the message payload.
Returns
- HarpMessage
A HarpMessage object for the AccumulatedSteps register with the specified message type and payload.
FromPayload(double, MessageType, AccumulatedStepsPayload)
Returns a timestamped Harp message for the AccumulatedSteps register.
public static HarpMessage FromPayload(double timestamp, MessageType messageType, AccumulatedStepsPayload value)
Parameters
timestamp
doubleThe timestamp of the message payload, in seconds.
messageType
MessageTypeThe type of the Harp message.
value
AccumulatedStepsPayloadThe value to be stored in the message payload.
Returns
- HarpMessage
A HarpMessage object for the AccumulatedSteps register with the specified message type, timestamp, and payload.
GetPayload(HarpMessage)
Returns the payload data for AccumulatedSteps register messages.
public static AccumulatedStepsPayload GetPayload(HarpMessage message)
Parameters
message
HarpMessageA HarpMessage object representing the register message.
Returns
- AccumulatedStepsPayload
A value representing the message payload.
GetTimestampedPayload(HarpMessage)
Returns the timestamped payload data for AccumulatedSteps register messages.
public static Timestamped<AccumulatedStepsPayload> GetTimestampedPayload(HarpMessage message)
Parameters
message
HarpMessageA HarpMessage object representing the register message.
Returns
- Timestamped<AccumulatedStepsPayload>
A value representing the timestamped message payload.