Translations:Rule Examples/182/en

Материал из Wiren Board

// position controller works at night

 defineRule("heatersNightOff", {
   when: function() {
     return (!dev._schedules.heaters_schedule) && (vegetablesTemperature > 11.6);
   },
   then: function (newValue, devName, cellName) {
     log("heatersNightOff  newValue={}, devName={}, cellName={}", newValue, devName, cellName);
     heater1EnableInverted = !false; // inverted
   }
 });