From 136da94deee57d87f24a2297ebc43d9a86de4433 Mon Sep 17 00:00:00 2001 From: Christian Weimann Date: Sun, 13 Aug 2023 05:31:33 +0200 Subject: [PATCH] utils/equipment.js aktualisiert --- utils/equipment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/equipment.js b/utils/equipment.js index ac685a7..18d7ead 100644 --- a/utils/equipment.js +++ b/utils/equipment.js @@ -40,7 +40,7 @@ class IrrigationValve extends Equipment { this.autoOff = this.watch['state'].add({ targetState: 'ON', alertFunc: () => { this.stateItem.sendCommand('OFF'); }, - alertDelay: 'PT1M' + alertDelay: 'PT59M' }); } } @@ -54,7 +54,7 @@ class TowelRadiator extends Equipment { this.autoOff = this.watch['state'].add({ targetState: 'ON', alertFunc: () => { this.stateItem.sendCommand('OFF'); }, - alertDelay: 'PT30M' + alertDelay: 'PT59M' }); } }