The RMP Motion Controller APIs

◆ CreateDigitalInput() [2/5]

static IOPoint* CreateDigitalInput ( Axis axis,
RSIMotorGeneralIo  motorGeneralIoNumber 
)
static
Description:
Parameters
axis
motorGeneralIoNumberRSIMotorGeneralIo
Returns
(IOPoint*) A pointer to the newly created IOPoint.

Part of the IOPoint Creation method group.

Sample Code:
IOPoints
const int NODE_INDEX = 0; // The EtherCAT Node we will be communicating with
//const int INPUT_INDEX = 0; // The PDO Index in that Node
const int OUTPUT_INDEX = 0; // The PDO Index in that Node
// IOPoint input0 = IOPoint.CreateDigitalInput(controller.IOGet(NODE_INDEX), INPUT_INDEX); // Automatically gets the memory index of a specified node and input index
IOPoint output0 = IOPoint.CreateDigitalOutput(controller.IOGet(NODE_INDEX), OUTPUT_INDEX); // Automatically gets the memory index of a specified node and input index
output0.Set(false);
controller.SampleWait(1);
Assert.False(output0.Get(), "The getter function should return a value equal to false");
Note
RSI::RapidCode::MotionController::SampleWait
void SampleWait(uint32_t samples)
Wait for controller firmware to execute samples.
RSI::RapidCode::MotionController::IOGet
IO * IOGet(int32_t nodeNumber)
IOGet returns a pointer to an IO object using its node number and initializes its internals.