Translations:Rule Examples/183/en

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

defineRule("heatersNightOn", {

   when: function() {
     return (!dev._schedules.heaters_schedule) && (vegetablesTemperature < 11.3);
   },
   then: function (newValue, devName, cellName) {
     log("heatersNightOn  newValue={}, devName={}, cellName={}", newValue, devName, cellName);
     heater1EnableInverted = !true; // inverted
   }
 });