From OpenSCADAWiki
Jump to: navigation, search

Enter a message name below to show all available translations.

Message

Found 3 translations.

NameCurrent message text
 h English (en)The first method consists in decrement of the counter, set in the time interval value, in each cycle, and at the periodicity of the cycle to the value of <= 0, for example, in OpenSCADA this is implemented as follows:
<syntaxhighlight lang="JS">
if((tm_cnt-=1/f_frq) <= 0) {  //Decrement
   tm_cnt = 10; //Setting the counter to 10 seconds
   //Perform other actions with the 10 seconds period
}</syntaxhighlight>
 h Russian (ru)Первый способ заключается в декременте счётчика, установленного в значение временного интервала, в каждом цикле и на значение периодичности такта до значения <=0, например, в OpenSCADA это реализуется таким образом:
<syntaxhighlight lang="JS">
if((tm_cnt-=1/f_frq) <= 0) {  //Декремент
   tm_cnt = 10; //Установка счётчика в значение 10 секунд
   //Выполнение других действий с периодичностью 10 секунд
}</syntaxhighlight>
 h Ukrainian (uk)Перший спосіб полягає у декременті лічильника, встановленого у значення часового інтервалу, у кожному циклі та на значення періодичності такту до значення <=0, наприклад, у OpenSCADA це реалізується таким чином:
<syntaxhighlight lang="JS">
if((tm_cnt-=1/f_frq) <= 0) {  //Декремент
   tm_cnt = 10; //Встановлення лічильника у значення 10 секунд
   //Виконання інших дій з періодичністю 10 секунд
}</syntaxhighlight>