Translations:Rule Examples/67/en

Материал из Wiren Board
Версия от 20:39, 21 сентября 2022; Matveevrj (обсуждение | вклад) (Новая страница: «defineRule("roller_shutter_1_down_on", { asSoonAs: function() { return relay_down_1; }, then: function () { setTimeout(function() { relay_down_1 = 0; }, timeout_s * 1000); } });»)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)

defineRule("roller_shutter_1_down_on", {

   asSoonAs: function() {
     return relay_down_1;
   },
   then: function () {
     setTimeout(function() {
       relay_down_1 = 0;
     }, timeout_s * 1000);
   }
 });