This is part of 2.1.0latest release.

MLxRobotResetSearch

0.1.0
since lib: v2.1.0  

Deactivate the robot search condition. Motion commands sent after this MLxRobotResetSearch are no longer executed as search motion.

This function has to be executed immediately after sending the motion commands which are used for the search motion.

More information on this in the feature description .

Version history

0.1.0

  deGroot

Changes

Added:
  • initial release

Controller support

controllerintroduced in
DX200DN2.94
YRC1000YAS3.05
YRC1000microYBS2.45

Prerequisites

prerequisitestate
Option functionSearch function enabled.

Overview

kindnametypedefaultcomment
inputEnableBOOLEnable this Function Block.
inputRobotNumberDINT0The robot commanded by this instruction instance. Valid values are 0 to MLX.NumberOfRobots-1.
outputSts_ENBOOLEnable bit. This bit will stay high as long as the instruction is enabled.
outputSts_DNBOOLDone bit. This bit will turn high when the instruction has finished.
outputSts_ERBOOLError bit. Indicates an error during instruction execution. Call MLxGetErrorDetail for more information.
in_outMLXMLxDataThe MLxData Controller Scope tag.

Details

Enable

BOOL

For starting this function block. On a rising edge of this input the internal processing will start which is indicated by the Sts_EN status signal.

Internal processing steps typically involve:

  • checking if required conditions are met
  • sending command data to the robot controller (on the next possible occasion)
  • receiving answer data from the robot controller

Since the status bits will only be updated as long as the Enable is active, it is necessary to keep the input enabled until the FB has completed its entire lifecycle which is signalled by the Sts_DN (done) status signal.

Disabling the input too early can mess up the MotoLogix command interface and lead to a hangup situation.

RobotNumber

DINT
(default: 0)

Specifies the motion device targeted by this MotoLogix function.

The MotoLogix data packet supports a maximum of 4 motion devices on one robot contoller. Examples of motion devices are:

  • manipulators (e.g. GP7 robot)
  • base axes (e.g. gantry system)
  • station axes (e.g. servo gripper)

Each motion device gets its own RobotNumber (and slot in the data packet). Some examples:

two robots: R1 and R2

[0]     // R1
[1]     // R2
[2]     // not used
[3]     // not used

two robots on a linear track R1B1 and R2B2

[0]     // R1
[1]     // R2
[2]     // B1
[3]     // B2

robot with a servo gripper R1S1

[0]     // R1
[1]     // S1
[2]     // not used
[3]     // not used

The numbering is fixed in the configuration of the robot controller (cannot be changed by MotoLogix). MLxRobotGetProperties can be used to read this configuration. It will give you practical information for each motion device such as: type, axis names, speed- and motion range.

valueexplanation
0-3Robot number (use MLxRobotGetProperties to see the mapping).

Sts_EN

BOOL

Status Enabled signal which tells that the FB is currently enabled. It reflects the status of the Enable input.

A common use for Sts_EN is in combination with the Sts_DN (or Sts_PC) signal. This filters the old status which is important because in the PLC scan where the FB gets enabled the Sts_DN still has the status from its previous run (which is probably high) until the FB call is processed.

CASE state OF
...
10:
  // enabling the FB
  someMLxFB.Enable := TRUE;

  // condition to proceed after FB finished
  // --> Sts_DN still has its old status from previous run
  IF (someMLxFB.Sts_DN AND someMLxFB.Sts_EN) THEN
    state := state + 10;
  END_IF;

20:
  ...
END_CASE;

// FB call
someMLxFB(...);
// --> now Sts_DN has the new status

Sts_DN

BOOL

Status done signal which tells that the FB has finished. This means the Enable input can now safely be disabled as the FB has completed its lifecycle.

This status signal keeps its status until the next time this FB is enabled. See Sts_EN on how to filter any old status.

Sts_ER

BOOL

Status error signal which tells that the FB has failed. The Enable input can now be disabled as the FB has aborted its lifecycle.

Now it is important to find the cause of the error. In most cases the robot controller has generated an alarm which explains what the problem is.

Recommended next steps:

  • Read the alarm details using MLxGetErrorDetail
  • Fix the issue described in the alarm details (e.g. parameter out of range)
  • Reset the alarm using MLxReset (also clears the motion queue) or MLxResetAndHold (resets the alarm but leaves the motion queue in place).
  • Restart the application

If Sts_ER becomes active but the robot controller does not generate an alarm you should check the SystemState and the conditions/prerequisites for using the FB.

This status signal keeps its status until the next time this FB is enabled. See Sts_EN on how to filter any old status.

The MotoLogix variable which acts as the shared memory for a MotoLogix system.

As the PLC runs through its scan cycle each active MotoLogix FB will read from- and write to this MotoLogix variable.

It is also used for processing the data red from- and sent to the robot controller.

There are a few important rules:

  • MLxCommunicationRead must be called at the very beginning of the PLC scan cycle.
  • MLxCommunicationWrite must be called at the very end of the PLC scan cycle.
  • All other MotoLogix FB’s used in your application must be called inbetween.
  • All off this must be handled by the same PLC task, respecting above rules.

Failing to follow above rules can lead to inconsistent data being sent to the robot controller which could result in unexpected motion.

Implementation

Snippet of the function call:
fbRobotResetSearch : ARRAY[0..0] OF MLxRobotResetSearch;

// fbRobotResetSearch[0].Enable := ;
// fbRobotResetSearch[0].RobotNumber := ;
fbRobotResetSearch[0]( MLX := dummy );
//  := fbRobotResetSearch[0].Sts_EN;
//  := fbRobotResetSearch[0].Sts_DN;
//  := fbRobotResetSearch[0].Sts_ER;

Pages built with Hugo - 23 Apr 2024 11:54 CEST