Simply3DScan
Motor.cs
Go to the documentation of this file.
1 using PostSharp.Patterns.Contracts;
2 namespace Configuration
3 {
7  public class Motor
8  {
15  [StrictlyPositive]
16  public int Steps { get; set; }
23  [StrictlyPositive]
24  public int MicroSteps { get; set; }
31  public bool MicroStepsEnabled { get; set; }
32  }
33 }
bool MicroStepsEnabled
Gets or sets a value indicating whether [micro steps enabled].
Definition: Motor.cs:31
Configuration for motor
Definition: Motor.cs:7
int MicroSteps
Gets or sets the number of micro steps.
Definition: Motor.cs:24
int Steps
Gets or sets the number of steps.
Definition: Motor.cs:16