Issue:
Looking for a script method to convert bits to an Integer in Vijeo Designer?
Product Line:
Vijeo Designer (all versions)
Resolution:
To convert bits to be used an Integer variable in Vijeo Designer, please use a script as shown below:
boolean bitArray[] = new boolean[16];
int value = 0;
bitArray[0] = true;
bitArray[1] = true;
bitArray[2] = true;
bitArray[3] = true;
bitArray[4] = true;
bitArray[5] = true;
bitArray[6] = true;
bitArray[7] = true;
bitArray[8] = false;
bitArray[9] = false;
bitArray[10] = false;
bitArray[11] = false;
bitArray[12] = false;
bitArray[13] = false;
bitArray[14] = false;
bitArray[15] = false;
for (int i = 0; i < 16; i++)
{
if (bitArray[i])
{
value += 1 << i;
}
}
//TestINT is a Vijeo Designer INT variable that I created. This was just used to test the output.
TestINT.write(value);
If this FAQ did not solve your issue, you can chat with us at chat with us or e-mail us at customer.services@se.com to create a case with our Technical Support Team.
If you are not located in North America, please contact your local Customer Care Center for assistance:
Support | Schneider Electric Global (se.com)
Udgivet til: Schneider Electric Danmark


Brug for hjælp?
Produktvælger
Find hurtigt og nemt de rette produkter og det rette tilbehør til dine anvendelser.
Få et tilbud
Start din salgsforespørgsel online, så vil du blive kontaktet af en ekspert.
Find forhandler
Find den nærmeste Schneider Electric-distributør.
Hjælpecenter
Find supportressourcer til alle dine behov på ét sted.