Translations:Rule Examples/184/en

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

// supply and exhaust ventilation are forcibly switched off

 defineRule("ventFrontshopAlwaysOff", {
   when: cron("@every 1m"),
   then: function() {
 		dev["wb-gpio/EXT1_R3A3"] = !false;
 		dev["wb-gpio/EXT1_R3A4"] = !false;
   }
 });
 
 
 // ==================  The cash register area =================