Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - inoya

Pages: [1]
1
Support Questions / Re: Write array bool with EthernetIPforCLXCom
« on: July 06, 2015, 04:02:46 AM »
Ok,

But, how write individual?
conector.Write("ABool[0]", 0) ' write the Array in position 0.
conector.Write("ABool[1]", 0) ' write the Array in position 32

How write in position 1?, 2?


2
Support Questions / Write array bool with EthernetIPforCLXCom
« on: July 03, 2015, 05:45:48 AM »
Hello,

i can read array bools perfectly with
 Dim Abool = conector.Read("ABool[0]", 96)

But, i can't write the new values:

I tried:
conector.Write("ABool[0]", 0) ' write the Array in position 0.
conector.Write("ABool[1]", 0) ' write the Array in position 32

Dim t() = {1, 0, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 1}
conector.Write("ABool[0]", t) ' not write but not error.
conector.Write("ABool[0]", 32, t) ' not write but not error.

How write at complete array?, Thanks.

Pages: [1]