Providing valve control with the X20DS438A module

Hello
I have an X20DS438A module and I want to make an IO link. I took the necessary steps in the configuration settings. How can I control the valve islands through the channel?

Hi,

I haven’t done it yet, but it seems to me to be quite extensively documented:

B&R Online Help

1 Like

Hello,

I have a Festo valve block with IO Link interface in my project. Here are my settings. You have to adapt the input and output size to your valve block.

Regards
Stephan

1 Like

Thanks, I made the settings. well to check my Valves. How can I write a program? In other words, I want to control the 1st line on the 1st channel, or how should I make the assignment to control the 15th valve on the 1st channel?

thank you dear manager

1 Like

Here is an example of how I turn on the first valve coil.

PROGRAM _CYCLIC

Valve.Out[0].0	:= TRUE;

END_PROGRAM

1 Like

Thank you dear Stephan Herbig