Bristol ControlWave Micro ST Programming

Same basic way with any ST. Your needs for syntax will vary per platform.

i := 0; // Set pointer to zero
Total := 0; //Set total to zero
ArraySize := Size(Array) - 1; //Get the size of the array so we don't overstep boundaries
While i < ArraySize
Total += Array;
i := i + 1;
End_While;
 

Similar Topics

I was just called out to a site. one of our instrument techs added an I2p for valve Control on a Micro. Then it wasn't working right. so he made...
Replies
1
Views
2,089
I need the pin outs for the 8pin micro port on the TSX Micro from Telemaquinue for modbus 485 comms with a Bristol Babcock Controlwave Micro. I...
Replies
2
Views
5,132
Hi all, I have a job next week where I will be going online with a few ControlWave PLC's at a customer's site, and we do not know what the...
Replies
2
Views
2,054
I'm installing an HMI for an existing RTU. I have a spare control wave I want to dump the program into to test it before I go to site, however...
Replies
0
Views
251
Does someone know what is the function V_ATTRIB_GET? I can't any information about it anywhere in the internet.
Replies
0
Views
371
Back
Top Bottom