Good Morning
Im trying to remember/understand what each argument does in the IOSYS file
I tried to make various examples in the following code
Please correct me if I am misinterpreting the way this works.
Code
;******************************
;V1
;PLC 128 Inputs
;PLC, MACID 11, output starting at 1
;Robot Input Starting at 1
INW0=11,0,x1;$IN[1-16]
INW2=11,2,x1;$IN[17-32]
INW4=11,4,x1;$IN[33-48]
INW6=11,6,x1;$IN[49-64]
INW8=11,8,x1;$IN[65-80]
INW10=11,10,x1;$IN[81-96]
INW12=11,12,x1;$IN[97-112]
INW14=11,14,x1;$IN[113-128]
;V1 but using Multiplier
INW0=11,0,x8;$IN[1-128]
;******************************
;******************************
;V2
;PLC 128 Inputs
;PLC, MACID 12, output starting at 129
;Robot Input Starting at 1
INW0=12,16,x1;$IN[1-16]
INW2=12,18,x1;$IN[17-32]
INW4=12,20,x1;$IN[33-48]
INW6=12,22,x1;$IN[49-64]
INW8=12,23,x1;$IN[65-80]
INW10=12,24,x1;$IN[81-96]
INW12=12,26,x1;$IN[97-112]
INW14=12,28,x1;$IN[113-128]
;V2 but using multiplier
INW0=12,16,x8;$IN[1-128]
;******************************
;******************************
;V3
;PLC 64 Inputs
;PLC, MACID 2, output starting at 145
;Robot Input Starting at 65
INW8=2,18,x1;$IN[65-80]
INW10=2,20,x1;$IN[81-96]
INW12=2,22,x1;$IN[97-112]
INW14=2,24,x1;$IN[113-128]
;V3 but using multiplier
INW8=2,18,x4;$IN[65-128]
;******************************
Display More
Thanks