Все переводы

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

Сообщение

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

СообщениеТекущий текст
 ист. английский (en)//  sales area illumination
  defineRule("lightingFrontshopOnOff", {
   when: function() {
     return dev._schedules.frontshop_lighting || true;
   },
   then: function (newValue, devName, cellName) {
     log("lightingFrontshopOnOff  newValue={}, devName={}, cellName={}", newValue, devName, cellName);
     dev["wb-gpio/EXT1_R3A1"] = ! dev._schedules.frontshop_lighting; //inverted contactor
   }
  });
 ист. русский (ru)// Освещение торгового зала
  defineRule("lightingFrontshopOnOff", {
   when: function() {
     return dev._schedules.frontshop_lighting || true;
   },
   then: function (newValue, devName, cellName) {
     log("lightingFrontshopOnOff  newValue={}, devName={}, cellName={}", newValue, devName, cellName);
     dev["wb-gpio/EXT1_R3A1"] = ! dev._schedules.frontshop_lighting; //инвертированный контактор
   }
  });