Technical data

Introduction to Programming 1
U2751A Programmer’s Reference Guide 7
The following command closes channels 101, 103, and 107 on the module.
The following commands close channels 101, 303, and 405 on the module.
The following command closes channels 201 through 203.
The following command closes channels 106 through 303.
The following command closes channels 101 and 201 through 203 and 303.
The following command closes channels 101 through 108 and 205 through
308.
ROUT:CLOS (@101,103,107) // By using ‘,’ for individual channel
selection in the same row.
ROUT:CLOS (@101,303,405) // By using ‘,’ for individual channel
selection in different row.
ROUT:CLOS (@101, 303, 405) // The command is still valid with or
without the spaces in between each
channel.
ROUT:CLOS (@201:203) // By using ‘:’ for multiple channel
selection in the same row.
ROUT:CLOS (@106:303) // By using ‘:’ for multiple channel
selection in different row.
ROUT:CLOS (@101,201:203,303) // By using ‘,’ and ‘:’ for multiple
channel selection.
ROUT:CLOS (@101:108,205:308) // By using ‘:’ and ‘,’ for multiple
channel selection.