APIs, concepts, guides, and more
MotionModify.cs
Attention
See the following Concept pages for a detailed explanation of this sample: Feed Rate, SCurve Motion.
Warning
This is a sample program to assist in the integration of the RMP motion controller with your application. It may not contain all of the logic and safety features that your application requires. We recommend that you wire an external hardware emergency stop (e-stop) button for safety when using our code sample apps. Doing so will help ensure the safety of you and those around you and will prevent potential injury or damage.

The sample apps assume that the system (network, axes, I/O) are configured prior to running the code featured in the sample app. See the Configuration page for more information.
using NUnit.Framework;
using System;
using System.Threading;
[TestFixture]
[Category("Software")]
class MotionModify : SampleAppTestBase
{
[Test] // Timeout(Constants.MAX_TEST_TIME)
public void FeedRate()
{
Console.WriteLine("Start Motion");
axis.MoveSCurve(100); // Call MoveScurve to move to a position.
// set feedrate for axis to 150%
axis.FeedRateSet(1.5);
while (axis.CommandPositionGet() < 5)
{
Thread.Sleep(1); // Wait here until we reach position "15".
}
axis.Stop(); // Stop the axis/motor.
axis.MotionDoneWait(); // Wait for move to complete.
axis.FeedRateSet(-1); // Change FeedRate to reverse motion.
axis.Resume(); // Start Reverse Motion.
Console.WriteLine("New Feed Rate Start");
axis.FeedRateSet(1); //restore default
}
public void ChangeMotionSpeed()
{
axis.MoveSCurve(20, Constants.VELOCITY, Constants.ACCELERATION, Constants.DECELERATION, Constants.JERK_PERCENT);
if (axis.CommandPositionGet() > 2)
{
// Go 10X faster
axis.MoveSCurve(20, Constants.VELOCITY * 10, Constants.ACCELERATION, Constants.DECELERATION, Constants.JERK_PERCENT);
}
}
}
double CommandPositionGet()
Get the current command position.
void MoveSCurve(double position, double vel, double accel, double decel, double jerkPct)
Command a point-to-point S-Curve motion.
int32_t MotionDoneWait()
Waits for a move to complete.
void Resume()
Resume an axis.
void FeedRateSet(double rate)
Set the feed rate for an Axis.