Все переводы

Введите имя сообщения для показа всех доступных переводов.

Сообщение

Найдено 2 перевода.

СообщениеТекущий текст
 ист. английский (en)defineRule("motion_detector_1", {
   whenChanged: "wb-gpio/D2_IN",
   then: function (newValue, devName, cellName) {
       if (newValue) {
           dev["wb-gpio/Relay_1"] = true;
           if (motion_timer_1_id) {
               clearTimeout(motion_timer_1_id);
           }
           motion_timer_1_id = setTimeout(function () {
               dev["wb-gpio/Relay_1"] = false;
               motion_timer_1_id = null;
           }, motion_timer_1_timeout_ms);
       }
   },
});
</syntaxhighlight>
 ист. русский (ru)defineRule("motion_detector_1", {
   whenChanged: "wb-gpio/D2_IN",
   then: function (newValue, devName, cellName) {
       if (newValue) {
           dev["wb-gpio/Relay_1"] = true;
           if (motion_timer_1_id) {
               clearTimeout(motion_timer_1_id);
           }
           motion_timer_1_id = setTimeout(function () {
               dev["wb-gpio/Relay_1"] = false;
               motion_timer_1_id = null;
           }, motion_timer_1_timeout_ms);
       }
   },
});
</syntaxhighlight>