ABCLX array elements in Plant SCADA's equipment editor

How do I access ABCLX array elements in Plant SCADA's equipment editor (for example Scada_Float{12})? The braces cause an error when updating equipment: 'undefined variable reference'.

Parents Reply
  • I used "[]", but when I read the bool array in the PLC program, I found that one word of data was missing. That is, when I used the driver to read the 32nd element of the array, I actually read the data at the 64th element. At this time, Bool[32] in the program is "TRUE", but Bool[64] in the SMC is "TRUE" (Bool is actually a tag name). In my opinion, this is abnormal. Do you know what causes this phenomenon?The picture shows the data I tested with WWClient.

Children