Rule Examples/en: различия между версиями

(Новая страница: «When the CO2 concentration is over 651, but less than 1000, we flash yellow once every 5 seconds.»)
Строка 418: Строка 418:
When the CO2 concentration is over 651, but less than 1000, we flash yellow once every 5 seconds.
When the CO2 concentration is over 651, but less than 1000, we flash yellow once every 5 seconds.


<div lang="ru" dir="ltr" class="mw-content-ltr">
When the CO2 concentration is over 1001, we flash red once a second.
При концентрации CO2 свыше 1001 - раз в секунду мигаем красным.
<div class="mw-collapsible mw-collapsed"; style="width:600px; overflow: hidden;">
<div class="mw-collapsible mw-collapsed"; style="width:600px; overflow: hidden;">
<syntaxhighlight lang="ecmascript">
<syntaxhighlight lang="ecmascript">
Строка 428: Строка 427:
         var co2_middle = newValue < 1000 && newValue > 651;
         var co2_middle = newValue < 1000 && newValue > 651;
         var co2_bad = newValue > 1001;
         var co2_bad = newValue > 1001;
</div>


         <div lang="ru" dir="ltr" class="mw-content-ltr">
         <div lang="ru" dir="ltr" class="mw-content-ltr">