IO Command
prakash
Posts: 33
Hi
I am confused with IO Ports so please tell me What is the command(Syntax) to check the VSS2 to make sure the device(i.e DVD) is ON and how to turn it ON and OFF.
I am confused with IO Ports so please tell me What is the command(Syntax) to check the VSS2 to make sure the device(i.e DVD) is ON and how to turn it ON and OFF.
0
Comments
dvIO = 5001:17:0
To test IO 1, it's simply the value of [dvIO, 1]. If that resolves to true, the IO is detecting an input. so your code can say, IF ([dvIO,1] == TRUE) {<do something>}, or some prefer just IF([dvIO,1]) {<do something>}.