KassowRobots_Banner_ctrlX.jpg

Connect Kassow Robots RC with ctrlX PLC via Profinet

strakin
Member

In this article we describe a solution used to integrate Kassow Robots RC with ctrlX PLC Engineering using the Profinet interface. We provide you with the setup and programming templates used in the CODESYS PLC environment to control elementary data exchange between the robot and ctrlX device.

Introduction

Profinet (usually styled as PROFINET, as a portmanteau for Process Field Net) is an industry technical standard for data communication over Industrial Ethernet. It is designed for collecting data from and controlling equipment in industrial systems, with a particular strength in delivering data under tight time constraints. The standard is maintained and supported by Profibus & Profinet International [de], an umbrella organization headquartered in Karlsruhe, Germany.

Kassow Robots RCs provide access to this real-time field bus by incorporating the specialized hardware extension (Hilscher cifX), which is not available with a standard KassowRobots RC. The Profinet extension handles all necessary real-time requirements for the fieldbus and allows the integration of KassowRobots robot controllers within existing Profinet infrastructures. Each robot equipped with the optional Profinet HW interface can act as an IO-Device. This means that such a robot can be monitored and controlled by any PROFINET IO-Controller (for example, PLC).

Requirements
  • Kassow Robots RC (robot controller) supporting PROFINET fieldbus
  • ctrlX PLC Engineering IDE 
  • CODESYS fieldbus communication drivers for Ethernet IP and PROFINET
  • Some basic experience with the ctrlX PLC Engineering programming
Basic Access to Profinet Data Fieldbus

In the sections that follow, we outline the fundamental steps for setting up a project and system. This setup is specifically designed for Profinet communication between the ctrlX CORE and the KR Robot Controller (referred to as RC). We'll illustrate the process using user data fieldbus slots.

Step 1 - Initial Setup

Check the Wiring:

  • The Kassow RC Profinet to PLC Ethernet cable should be inserted into the XF51 port on the PLC.
  • Connect your PC running ctrlX WORKS with the XF10 port on the PLC.

Switch on the Kassow RC, ctrlX PLC, and a PC with ctrlX PLC Engineering installed. The PLC should be blinking blue. Connect to the ctrlX CORE using ctrlX WORKS. The PLC should start blinking red.

ctrlX Works DashboardctrlX Works Dashboard

Step 2 - Initialize your ctrlX PLC Engineering tools

When establishing the initial connection of the Profinet fieldbus to the ctrlX CORE, it is essential to initialize the ctrlX as a fieldbus device. To accomplish this, update the PLC Engineering IDE with the necessary add-ons, particularly the Fieldbus Ethernet IP and PROFINET Codesys drivers:

  • CODESYS Ethernet Adapter package (4.2.0 or higher)
  • CODESYS NetX package (4.0.0 or higher)
  • CODESYS PROFINET package (4.4.0 or higher)

necessary add-ons, particularly the Fieldbus Ethernet IP and PROFINET Codesys driversnecessary add-ons, particularly the Fieldbus Ethernet IP and PROFINET Codesys drivers

For a comprehensive guide on downloading and installing these dependencies, please refer to the ctrlX support pages.

ctrlX DashboardctrlX DashboardOnce your PLC Engineering IDE is equipped with the required libraries and add-ons, proceed to open and deploy the "KR Profinet template v1.2.1.project" (included in the enclosed zip file).

Note: If you are not using the template and creating your own project, load the GSDML file "gsdml-v2.35-kassow_robots-axxx-20210602.xml" (included in the enclosed zip file).

Load the GSDML file, build the code and deploy it on the ctrlX PLCLoad the GSDML file, build the code and deploy it on the ctrlX PLCBuild the code and deploy it on the ctrlX PLC Engineering. The Profinet master (ctrlX) should now be active, allowing you to attempt connecting the Kassow RC as its IO Device counterpart.

Step 3 - Profinet Setup

Adjustments on ctrlX CORE
We use the Network Interface XF51 for the profinet connection as mentioned before. For this template, we use the IP address 192.168.0.10. You can set that in ctrlX CORE Settings > Network Interfaces

Adjustments in ctrlX CORE Settings > Network InterfacesAdjustments in ctrlX CORE Settings > Network InterfacesChoose XF51 and set the IP address this way.

Choose XF51 and set the IP addressChoose XF51 and set the IP addressEnabling Profinet on the Kassow
With the fieldbus successfully running on your master node, the next step involves setting it up on the robot controller as well. To achieve this, utilize the teach pendant UI. Navigate to the Workcell/Interfaces section and select the "profinet" item.

Note: If the Profinet interface is not available, it is likely that your robot is not equipped with the optional Profinet HW (please confirm with Kassow Robots tech support if you are uncertain).

Profinet ActivationProfinet ActivationClick "Enable" to activate the Profinet and wait until the status is changed to "Connected.

By now, the teachpendant should be showing connected in the top left corner, indicating that the teachpendant is communicating with the robot. 

Teachpendant shows connected and is communicating with the robotTeachpendant shows connected and is communicating with the robot

Step 4 - Simple PLC program from the KR Profinet template

Now, we return to the PLC Engineering IDE with the "KR Profinet template v1.2.1.project" project open.

Every KR template project contains all necessary types and functions for converting between the fieldbus and internal program representations. The primary user code is located within the PLC_PRG program, with pre-defined local variables reflecting 12 KR Profinet modules. In the "FETCHING INPUT VARIABLES" preamble, the input fieldbus variables are updated, followed by the "USER CODE" section. This is where your PLC code logic, combining fieldbus data reading and writing, should be placed. The final section, "FILLING OUT VARIABLES" provides the necessary conversion to the fieldbus structure.

PLC_PRG user codePLC_PRG user code

The "USER CODE" section essentially establishes the boundaries for your PLC code. Here, you should access the RC Profinet data and call all your dedicated functions constituting your PLC program. Leave the preamble and final section intact.

For illustration purposes, you can easily modify user slots 10, 11, and 12 of the KR Profinet frame by accessing variables out64Bit, out24Int, out24Real as follows:

Accessing Profinet Output variablesAccessing Profinet Output variablesTo access and use these values on the side of the RC and UI programming environment, you have to do the mapping of Profinet variables. Let's see how to do that in the following step.

Step 5 - Profinet Input/Output mapping

The KR PROFINET frame defines a space for several single-typed arrays of user data (Ints, Doubles, Bits). To access this data from the context of the user RC running program, it is necessary to create an array mapping.

To do this, navigate to the Workcell/Profinet option panel and inside that, click the 'Map Profinet Variable' button.Map Profinet variable buttonMap Profinet variable buttonThis action opens up a variable map dialog where you can select the Profinet IO slot. Give it a name and click "Create". This will generate an outlet array within the RC user variable, providing access to the Profinet IO user slot for reading or writing:

Profinet IO User array mappingProfinet IO User array mappingThere are six user slots defined in the KR PROFINET IO fieldbus specifically designated for user data exchange. For more details check the USER INPUTS AND OUTPUTS table in the Appendix of this article.

For more details regarding the KR PROFINET IO fieldbus contents and specifics, refer to the enclosed document KR_profinet_netfrm_desc_1.0.pdf.

Step 6 - First ctrlX PLC data exchange

Now, you can attempt to assign values to the KR PROFINET IO slots using predefined output variables (PLC -> RC). Utilize the same empty 'KR Profinet template v1.2.project' template and add the following lines into the "USER CODE" section of the PLC_PRG program:

// USER CODE

// set 64 plc output variables
out64Bit.DINT_1 := 255;

// 24x integer outputs
out24Int.in1 := 1;
// ...
out24Int.in24 := 24;

// 24x real outputs
out24Real.real_1 := 3.0;
// ...
out24Real.real_24 := 3.24;


In the RC user interface, create the mapping to provide access to the Profinet Float output array:

Profinet mappingProfinet mappingTo observe the assigned outputs provided by the ctrlX PLC program, click "Login" at the top of the ctrlX PLC Engineering tool and use the "Play" button to execute the PLC code. This action will compile the code, load it into the PLC, and set it in motion. In the brief moment after ctrlX runs the code, the mapped Profinet array block (Float Outputs) will display transferred values:

Profinet Float Outputs arrayProfinet Float Outputs array

Accessing Robot State and RC IOs 

Except the user data, the KR PROFINET IO also defines slots for the main robot state and RC IO control. This part of the fieldbus data allow the PLC program to determine manipulator state (joint positions, speeds, TCP) or use evaluate robot error states.

System State

You can read the Robot status information simply by reading the inSystemState.Robot structure member values as illustrated in the following short sample ctrlX PLC program.

// USER CODE
// access the RobotState member value to evaluate the robot is moving
IF (inSystemState.Robot.RobotState = 3 OR inSystemState.Robot.RobotState = 4) THEN
    // robot is moving
    out24Int.int_1 := 1;
ELSE 
    // robot is not moving
    out24Int.int_1 := 0;
END_IF


This simple code snippet keeps the user output variable updated based on the "moving" status of the robot.

Similar way it is possible to read RobotMode, Program or Buttons state. The System State inSystemState.Safety contains also several safety related fields as SafetyMode, EStopFlag, PStopFlag or SStopFlag.

For more details check the SYSTEM STATE  table in the Appendix of this article.

Manipulator State

Dynamic state of the robot arm (joint positions, speeds, TCP coordinates) is also included in the KR PROFINET IO structure and is accessible through inJointsMonitor and inTCPMonitor structures.

To illustrate the use of inJointsMonitor member, check out the following PLC_PRG snippet evaluating the robot jointss robot is not moving:

// USER CODE
// define a local variable abs_speed and calculate it from the actual joint values
abs_speed := SQRT(EXPT(inJointsMonitor.Joint_1_velocity, 2) +
                  EXPT(inJointsMonitor.Joint_2_velocity, 2) +
                  EXPT(inJointsMonitor.Joint_3_velocity, 2) +
                  EXPT(inJointsMonitor.Joint_4_velocity, 2) +
                  EXPT(inJointsMonitor.Joint_5_velocity, 2) +
                  EXPT(inJointsMonitor.Joint_6_velocity, 2) +
                  EXPT(inJointsMonitor.Joint_7_velocity, 2));
IF (abs_speed > 0.0001) THEN
    // robot seems to be moving
    out24Int.int_1 := 1;
ELSE 
    // robot is not moving
    out24Int.int_1 := 0;
END_IF


The manipulator state also contains access to the TCP (Tool Center Point) related variables, giving the references about the end of arm tool coordinates within the cartesian space.

// USER CODE
// set user output field based on the TCP position
IF (inTCPMonitor.TCP_position_X > 0.0 AND inTCPMonitor.TCP_position_Y > 0.0) THEN
    // robot TCP is in front of X and Y axes
    out24Int.int_1 := 1;
ELSE 
    // robot TCP is somwhere else
    out24Int.int_1 := 0;
END_IF

For more details check the MANIPULATOR STATE table in the Appendix of this article.

Robot IOs

The KR PROFINET IO fieldbus provides access to digital/analog Inputs and Outputs available in physical slots on the KR RC (Cabinet) and Robot ToolIO (End of Arm Tool Flange). These IO slots are primarily accessible through the Teach Pendant UI and can be mapped for programming purposes.

The KR PLC template facilitates access to these variables using two modules: inIOMonitor for inputs and outIO for outputs.

To read specific digital inputs connected to the RC IOBoard, you can refer to the following code sample:

// USER CODE
// read the state of IOBoard input slots

IF (TO_BOOL(inIOMonitor.IOB_digital_inputs AND 2)) THEN
    // IOBoard Digital Output slot 2 is ACTIVE
END_IF

IF (inIOMonitor.IOB_current_input_1 > 5.0) THEN
    // IOBoard Current Analog Input slot 1 is more than 5 miliamps 
END_IF


For changing digital/analog output values, you can use the following code:

// USER CODE
// set IOBoard Digital Outputs
// define a local variable digital_outputs

digital_outputs := 0;
// activate DIO01
digital_outputs := SHL(1, 0) OR dig_outputs;
// activate DIO03
digital_outputs := SHL(1, 2) OR dig_outputs;
// activate DIO05
digital_outputs := SHL(1, 4) OR dig_outputs;

// set values
outIO.IOB_digital_outputs := dig_outputs;
// mask target requests
outIO.IOB_digital_outputs_monitor := 255; 


Changing all digital/analog output variables follows the same schema. It involves assigning the desired output to the API variable while setting the proper mask variable. The mask variable enables you to select output slots that must adhere to a value change request. If the output slot is not "demasked," the assigned value has no effect on its state.

The API also contains information about the previously requested value, which can be useful in some request state evaluations.

For more details check the ROBOT IOs table in the Appendix of this article.

Subroutine triggering framework

In addition to basic fieldbus access to Profinet modules defined by the KR PROFINET IO, the "KR Profinet template v1.2.1.project" also supports a mechanism that enables the remote execution of routines predefined in the RC. This extension is particularly useful for advanced applications where the ctrlX PLC can request the execution of predefined abstractions from the RC program, such as sequences of motions, robot state evaluations or peripheral control commands (e.g. Cbun methods).

To integrate this framework into your application, you should utilize a predefined KR program structure containing the necessary data handling. Open the enclosed KR template program “plc_routines_1_2_1.kr2” in your RC. It includes the infrastructure and placeholders for up to 8 subroutines (labeled ctrlx_routine_<N>) that will be triggered from the ctrlx PLC program. Your custom RC code should be coming there.

Please note the first sequence (Sequence_1) is fully engaged in communication control and subroutine triggering, so please refrain from modifying it. You can use the other empty KR sequences if you require concurrent user code running. 

To handle subroutine triggering, the RC program needs to be running. In the following illustration, you can find a simple trigger of the RC routine ctrlx_routine_1

// USER CODE

// Check whether there is already some ctrlx_routine_<> running on the RC
IF KR_call_proc.ready = TRUE THEN
	// Select to execute ctrlx_routine_1 here
	KR_call_proc.in := 1;
ELSE
	// Select nothing while the routine is still running
	KR_call_proc.in := 0;
END_IF

// Subroutine handling
// this call has to be present right after the USER CODE section to evaluate and command subroutine data
KR_call_proc();


A few framework variables play a crucial role in controlling the state of routine triggers:

  • KR_call_proc.in - Used to assign the index of the desired ctrl_routine_<n> that will be executed in the RC program. Placeholders for ctrlx routines 1-8 are already present within the current RC template.
  • KR_call_proc.ready - Provides the state of the actively running routine in the RC. It returns True while any ctrlx routine is running in the RC program; otherwise, it contains False (idle).

KR_call_proc() is the important part of this framework overhanding requests and updating its state from the underlying Profinet data fields. This call needs to be provided at each update of the PLC_PRG program.

Please be mindful that this framework relies on a few KR PROFINET IO user module integer variables for status exchange. Consequently, it is essential to refrain from using the output variables out24Int.int_22, out24Int.int_23, out24Int.int_24, as well as the input variables in24Int.int_23, in24Int.int_24.

Appendix


System State

Variable

Description

inSystemState.Robot.MajorVersion
(USINT)
inSystemState.Robot.MinorVersion
(USINT)
KR PROFINET IO frame content version.
The present version is assuming Major = 1, Minor = 0.
inSystemState.Robot.RobotMode
(USINT)

Contains the value about the manual/automatic mode actually present in the RC. 

Defined values:
0 - N/A
1 - MANUAL (User program is not running on the RC)
2 - AUTOMATIC (User program is running the the RC)

inSystemState.Robot.RobotState
(USINT)

Robot State information describing the main robot operational status.

Defined values:
0 - N/A
1 - INITWaiting for the robot to be initialized (indicated by blue toggle blinking)
2 - STANDBYRobot is in standby mode, not currently moving, and awaiting move requests.
3 - MOVINGRobot is actively executing move requests, whether through jogging or automatic mode.
4 - BACKDRIVERobot is in backdrive mode, backdriven by the user holding the backdrive button.
5 - SUSPENDEDRobot operations are temporarily suspended, either due to the toggle button (flashing green) or by using the program pause button.
6 - SAFETY EVENTRobot is halted due to an internal RC alarm state (ESTOP, PSTOP, SSTOP, HALT).

inSystemState.Robot.ProgramState
(USINT)

Automatic Mode Status.
This variable provides details about the program execution state.

Defined values:
0 - N/A
1 - RUNNINGThe program is currently running.
2 - PAUSEDThe program has been paused, either externally by the user.
3 - HALTEDThe program has been halted due to safety or software conditions.

inSystemState.Robot.EStopButton
(BIT)

This flag reflects status of the ESTOP circuit. 

True - One/both ESTOP buttons are pressed or any other ESTOP conditions causing activation of the circuit were detected by the RC system.

False - Otherwise, no ESTOP is present in the RC system.

inSystemState.Robot.PStopButton
(BIT)

This flag reflects status of the PSTOP circuit. 

True - One/both PSTOP buttons are pressed or any other ESTOP conditions causing activation of the circuit were detected by the RC system.

False - Otherwise, no PSTOP is present in the RC system.

inSystemState.Robot.ToggleButton
(BIT)

State of the Toggle button (the pause button).

True - Toggle button is pressed
False - Otherwise

inSystemState.Robot.BackdriveButton
(BIT)

State of the Teach button (back of the teachpendant, or on the robot ToolIO).

True - Teach button is pressed
False - Otherwise

inSystemState.Safety.SafetyMode
(USINT)

The actual Safety Mode being set for the controller.

Defined values:
1 - SAFETY_MODE_SAFE (turtle)
2 - SAFETY_MODE_REDUCED (reduced)
3 - SAFETY_MODE_NORMAL (cheetah)

inSystemState.Robot.EStopFlag
(BIT)

The BIT value is set to True when the robot system enters the ESTOP state.

Please note that this flag reflects a broader state compared to the EStopButton mentioned earlier, which only indicates the state of the physical circuit.

inSystemState.Robot.PStopFlag
(BIT)

The BIT value is set to True when the robot system enters the PSTOP state.

Please note that this flag reflects a broader state compared to the PStopButton mentioned earlier, which only indicates the state of the physical circuit.

inSystemState.Robot.SStopFlag
(BIT)

The BIT value is set to True when the RC is in the Soft-Stop state. This state is exclusively triggered by the software controller and doesn't encompass other electronic/hardware or safety-defined signals from the system.

 

Manipulator State

Variable

Description

inJointsMonitor.Joint_1_position,..
inJointsMonitor.Joint_7_position
(REAL) [radians]

The member variables contain actual position of each robot joint stated in radians.

inJointsMonitor.Joint_1_velocity,..
inJointsMonitor.Joint_7_velocity
(REAL) [radians/s]

The member variables contain actual position of each robot joint stated in radians per second.

inJointsMonitor.Joint_1_current,..
inJointsMonitor.Joint_7_current
(REAL) [mA]

The member variables contain the actual currents running through each robot joint, expressed in milliamps.

inJointsMonitor.Joint_1_temperature,..
inJointsMonitor.Joint_7_temperature
(REAL) [degrees Celsius]

The member variables contain the actual temperatures of each joint (JointBoard sensor), expressed in degrees Celsius.

inTCPMonitor.TCP_position_X
inTCPMonitor.TCP_position_Y
inTCPMonitor.TCP_position_Z
(REAL) [meters]

Actual TCP reference position with regards to the WF (world frame) of the robot.

Value units are stated in meters.

inTCPMonitor.TCP_position_OR
inTCPMonitor.TCP_position_OP
inTCPMonitor.TCP_position_OY
(REAL) [radians]

Actual TCP reference orientation (RPY - roll, pitch, yaw) with regards to the WF (world frame) of the robot.

Value units are stated in radians.

inTCPMonitor.TCP_velocity_X
inTCPMonitor.TCP_velocity_Y
inTCPMonitor.TCP_velocity_Z
(REAL) [meters/s]

Actual velocity of the TCP reference with regards to the WF (world frame) of the robot.

Value units are stated in meters per second.

inTCPMonitor.TCP_velocity_OR
inTCPMonitor.TCP_velocity_OP
inTCPMonitor.TCP_velocity_OY
(REAL) [radians/s]

Actual rate of change in the TCP orientation (RPY) relative to the World Frame (WF) of the robot. It's important to note that these quantities do not represent a geometric angular vector.

The value units are stated in radians per second.

 

ROBOT IOs - Inputs

Variable

Description

inIOMonitor.IOB_digital_inputs
(UINT)

DI01 - DI16
IOBoard Digital Inputs (RO)

The variable encodes 16 physical input signals situated on the RC IOBoard. Each DIxx entry corresponds to a specific bit within the value, following the schema:

(DI01 << 0) | (DI02 << 1) | ... (DI16 << 15)

inIOMonitor.IOB_safe_inputs
(USINT)

SDI01 - SDI04
IOBoard Safe Digital Inputs (RO)

The variable encodes the status of four combined input signals situated on the RC IOBoard. When Safe Inputs are enabled, they operate in pairs, relying on physical Digital Inputs. The ACTIVE signal is returned only when both connected inputs in a pair are ACTIVE. For detailed information on safe IOs, please refer to the KR instruction manuals.

Each SDIxx entry is assigned to a specific bit within the value, following the schema:

(SDI01 << 0) | (SDI02 << 1) | ... (SDI04 << 3)

inIOMonitor.IOB_current_input_1
inIOMonitor.IOB_current_input_2
(REAL) [mA]

AI01, AI02
IOBoard Current Analog Inputs  (RO)

Two available current inputs on the RC IOBoard with a value range of 4-20mA.

inIOMonitor.IOB_voltage_input_1
inIOMonitor.IOB_voltage_input_2
(REAL) [V]

AI03, AI04
IOBoard Voltage Analog Input (RO)

Two available voltage inputs on the RC IOBoard with a value range of 0-10V.

inIOMonitor.TIO_current_input
(REAL) [mA]

TAI05/TAIC05
ToolIO Current Analog Input (RO)

One available Robot ToolIO current input with a value range of 4-20mA.

inIOMonitor.TIO_voltage_input_1,..
inIOMonitor.TIO_voltage_input_4
(USINT)

TAI03, TAI04 (Gen1 Robots)
TAI07M, TAI08M, TAI01M, TAI02M (Gen2 Robots)
ToolIO Voltage Analog Inputs (RO)

Up to four Robot ToolIO voltage input values, ranging from 0 to 10V.

Please note that the current KR Profinet 1.0 fieldbus definition only supports four of these inputs, as it has not been adapted to the newer KR generation 2 robots.

 

ROBOT IOs - Outputs

Variable

Description

outIO.IOB_digital_outputs
outIO.IOB_digital_outputs_mask
(USINT)

inIOMonitor.IOB_digital_outputs
(USINT)

DO01 - DO08
IOBoard Digital Outputs

These output variables command eight digital outputs on the IOBoard, with each slot represented by a corresponding bit value.

To implement a change in the actual value of the i-th output slot, set the i-th bit of the outIO.IOB_digital_output_mask. Subsequently, the value encoded at the i-th bit of the outIO.IOB_digital_output is applied (1 - ACTIVE, 0 - INACTIVE).

The mask variable enables you to select output slots that must adhere to a value change request. If the output slot is not "demasked," the assigned value has no effect on its state.

Additionally, the inIOMonitor.IOB_digital_outputs provides the recent request value.

outIO.IOB_relay_outputs
outIO.IOB_relay_outputs_mask
(USINT)

inIOMonitor.IOB_relay_outputs
(USINT)

 

RO01 - RO04
IOBoard Relay Outputs

These output variables command four relays on the IOBoard, with each slot represented by a corresponding bit value.

To implement a change in the actual value of the i-th output slot, set the i-th bit of the outIO.IOB_relay_outputs_mask. Subsequently, the value encoded at the i-th bit of the outIO.IOB_relay_outputs is applied (1 - ON, 0 - OFF).

The mask variable enables you to select output slots that must adhere to a value change request. If the output slot is not "demasked," the assigned value has no effect on its state.

Additionally, the inIOMonitor.IOB_relay_outputs provides the recent request value.

outIO.IOB_current_output_1,
outIO.IOB_current_output_2
(REAL) [mA]

outIO.IOB_current_outputs_mask
(USINT)

inIOMonitor.IOB_current_output_1
inIOMonitor.IOB_current_output_2
(REAL) [mA]

 

AO01, AO02
IOBoard Current Outputs

These output variables command two current output slots on the IOBoard. The accepted range is 4-20mA.

To implement a change in the actual value of the current output slot, set the 1st or 2nd bit of the outIO.IOB_current_output_mask

Additionally, the inIOMonitor.IOB_current_output_<n> provides the recent request value.

outIO.IOB_voltage_output_1,
outIO.IOB_voltage_output_2
(REAL) [V]

outIO.IOB_voltage_outputs_mask
(USINT)

inIOMonitor.IOB_voltage_output_1
inIOMonitor.IOB_voltage_output_2
(REAL) [V]

AO03, AO04
IOBoard Voltage Outputs

These output variables command two voltage output slots on the IOBoard. The accepted range is 0-10V.

To implement a change in the actual value of the voltage output slot, set the 1st or 2nd bit of the outIO.IOB_voltage_outputs_mask

Additionally, the inIOMonitor.IOB_voltage_output_<n> provides the recent request value. 

outIO.TIO_digital_outputs
outIO.TIO_digital_outputs_mask
(USINT)

inIOMonitor.TIO_digital_outputs
(USINT)

 

TDO01 - TDO04 (Gen1 Robots)
TDO01M - TDO04M (Gen2 Robots)

ToolIO Digital Outputs

These output variables command four digital outputs on the Robot ToolIO, with each slot represented by a corresponding bit value.

To implement a change in the actual value of the i-th output, set the i-th bit of the outIO.TIO_digital_outputs_mask. Subsequently, the value encoded at the i-th bit of the outIO.TIO_digital_outputs is applied (1 - ACTIVE, 0 - INACTIVE).

The mask variable allows you to select output slots that have to follow value change request. If the output slot is not "demasked", the assigned value has no effect on its state.

Additionally, the inIOMonitor.TIO_digital_outputs provides the recent request value.

Please note that for Gen1 Robots, also  outIO.TIO_digital_outputs_range variable is required to specify the voltage configuration. Here the bit value of 0 assigns 0-12V range, while bit value of 1 specify the 0-24V range.

outIO.TIO_power_supply
outIO.TIO_power_supply_mask
(USINT)

inIOMonitor.TIO_power_supply
(USINT)

 

 

TPSU01 - TPSU3 (Gen1 Robots)
TDO05M - TDO08M (Gen2 Robots)

ToolIO Digital Outputs, formerly know as PSU outputs for Gen1 Robots. (RW)

Output variables controling 4 extra ToolIO digital outputs. Particular slot is represented by a relevant bit value (starting from bit 1).

These output variables command four extra digital outputs on the Robot ToolIO. Particular slot is represented by a relevant bit value.

To implement a change in the actual value of the i-th output, set the i-th bit of the outIO.TIO_power_supply_mask. Subsequently, the value encoded at the i-th bit of the outIO.TIO_power_supply is applied (1 - ACTIVE, 0 - INACTIVE).

The mask variable allows you to select output slots that have to follow value change request. If the output slot is not "demasked", the assigned value has no effect on its state.

Additionally, the inIOMonitor.TIO_power_supply provides the recent request value.

Please note that for Gen1 Robots, also  outIO.TIO_power_supply_range variable is required to specify the voltage configuration. Here the bit value of 0 assigns 0-12V range, while bit value of 1 specify the 0-24V range.

outIO.TIO_analog_output_1,
outIO.IOB_analog_output_2
(REAL) [mA/V]

outIO.TIO_current_outputs_mask
outIO.TIO_current_outputs_TYPE
(USINT)

inIOMonitor.TIO_analog_output_1
inIOMonitor.TIO_analog_output_2
(REAL) [mA]

 

 

TAO01, TAO02
ToolIO configurable Analog Outputs (RW)

These output variables command two configurable outputs on the Robot ToolIO. Each of them can be configured either as current or voltage. Accepted range is 4-20mA resp. 0-24V.

Similarly as in case of previously described outputs, to implement a change in the actual value of one of the outputs, set  1st or 2nd bits in the outIO.TIO_current_outputs_mask

Use the outIO.TIO_current_outputs_TYPE variable to configure the output type. Bit value of 0 stands for the current mode, while 1 specifies the use voltage output.

In addition to control variables the inIOMonitor.TIO_analog_output_<n> give you the recent current state requests for both output slots.

 

User Data

Variable

Description

out64Bit

PLC -> Robot (Profinet Bit Output)
The PLC outputs 64 bit register for user data.The out64Bit variable consists of two 32 bit entries, DINT_1 and DINT_2:

out64Bit.DINT_1 -> Profinet Bit Output [0-31]
...
out64Bit.DINT_2 -> Profinet Bit Output [32-63]

The mapped array represents bit values in the net order, i.e. the MSB of DINT_1 is stored at index 0, while the LSB of DINT_1 at 31.  Similarly, the MSB of DINT_2 is at index 32 and LSB of DINT_1 at 63.

out24Int

PLC -> Robot (Profinet Int Output)
The PLC outputs 24 integer values (32-bit) for user data. When assigning a value to the PLC's int_XX output item, it becomes accessible in the RC through the system array:

out24Int.int_1 -> Profinet Int Output[0]
...
out24Int.int_24 -> Profinet Int Output[23]

out24Real

PLC -> Robot (Profinet Float Output)
The PLC outputs 24 floating point values for user data. When assigning a value to the PLC's real_XX output item, it becomes accessible in the RC through the system array:

out24Real.real_1 -> Profinet Float Output[0]
...
out24Real.real_24 -> Profinet Float Output[23]

in64Bit

Robot -> PLC (Profinet Bit Input)
The PLC inputs 64 bit register for user data. The in64Bit variable consists of two 32 bit entries, DINT_1 and DINT_2:

Profinet Bit Input [0-31] -> in64Bit.DINT_1
Profinet Bit Input [32-63] ->
in64Bit.DINT_2

The mapped array represents bit values in the net order, i.e. the MSB of DINT_1 is stored at index 0, while the LSB of DINT_1 at 31.  Similarly, the MSB of DINT_2 is at index 32 and LSB of DINT_1 at 63.

in24Int

Robot -> PLC (Profinet Int Input)
The PLC inputs 24x integer values (32-bit) for user data. When assigning a value to the RC's Profinet Input array index, it becomes accessible in the PLC in24Int.int_XX input item:

Profinet Int Input[0] -> in24Int.int_1
...
Profinet Int Input[23] -> 
in24Int.int_24

in24Real

Robot -> PLC (Profinet Float Input)
The PLC inputs 24x floating point values for user data. When assigning a value to the RC's Profinet Input array index, it becomes accessible in the PLC in24Real.real_XX input item:

Profinet Float Input[0] -> in24Real.real_1
...
Profinet Float Input[23] -> 
in24Real.real_24


The Company

Kassow Robots is developing and manufacturing unique and efficient 7-axes lightweight robots for industrial applications.

kassow+logo+with+no+background.png

1 Comment
Must Read
Icon--AD-black-48x48Icon--address-consumer-data-black-48x48Icon--appointment-black-48x48Icon--back-left-black-48x48Icon--calendar-black-48x48Icon--center-alignedIcon--Checkbox-checkIcon--clock-black-48x48Icon--close-black-48x48Icon--compare-black-48x48Icon--confirmation-black-48x48Icon--dealer-details-black-48x48Icon--delete-black-48x48Icon--delivery-black-48x48Icon--down-black-48x48Icon--download-black-48x48Ic-OverlayAlertIcon--externallink-black-48x48Icon-Filledforward-right_adjustedIcon--grid-view-black-48x48IC_gd_Check-Circle170821_Icons_Community170823_Bosch_Icons170823_Bosch_Icons170821_Icons_CommunityIC-logout170821_Icons_Community170825_Bosch_Icons170821_Icons_CommunityIC-shopping-cart2170821_Icons_CommunityIC-upIC_UserIcon--imageIcon--info-i-black-48x48Icon--left-alignedIcon--Less-minimize-black-48x48Icon-FilledIcon--List-Check-grennIcon--List-Check-blackIcon--List-Cross-blackIcon--list-view-mobile-black-48x48Icon--list-view-black-48x48Icon--More-Maximize-black-48x48Icon--my-product-black-48x48Icon--newsletter-black-48x48Icon--payment-black-48x48Icon--print-black-48x48Icon--promotion-black-48x48Icon--registration-black-48x48Icon--Reset-black-48x48Icon--right-alignedshare-circle1Icon--share-black-48x48Icon--shopping-bag-black-48x48Icon-shopping-cartIcon--start-play-black-48x48Icon--store-locator-black-48x48Ic-OverlayAlertIcon--summary-black-48x48tumblrIcon-FilledvineIc-OverlayAlertwhishlist