Console.WriteLine("📜 Axis Config: Stop Rate");
try
{
Axis axis = controller.AxisGet(axisNumber: 0);
Console.WriteLine($"Stop Time: {stopTime}");
Console.WriteLine($"EStop Time: {eStopTime}");
Console.WriteLine($"EStop Deceleration: {eStopDeceleration}");
}
finally
{
controller.Delete();
}
double EStopDecelerationGet()
Get the deceleration rate for an E-Stop, Modify Event.
void EStopDecelerationSet(double decel)
Set the deceleration rate for an E-Stop, Modify Event.
Represents a single axis of motion control. This class provides an interface for commanding motion,...
static MotionController * Get()
Get an already running RMP EtherCAT controller.
Represents the RMP soft motion controller. This class provides an interface to general controller con...
void StopTimeSet(double seconds)
Set the deceleration time for a Stop Event.
double EStopTimeGet()
Get E-Stop Event deceleration time.
void EStopTimeSet(double seconds)
Set the deceleration time for an E-Stop Event.
double StopTimeGet()
Get Stop Event deceleration time.
Helpers namespace provides utility functions for common tasks in RMP applications.