1
0

utils/equipment.js aktualisiert

This commit is contained in:
2023-08-13 05:31:33 +02:00
parent 2f4f0a3e19
commit 136da94dee

View File

@@ -40,7 +40,7 @@ class IrrigationValve extends Equipment {
this.autoOff = this.watch['state'].add({ this.autoOff = this.watch['state'].add({
targetState: 'ON', targetState: 'ON',
alertFunc: () => { this.stateItem.sendCommand('OFF'); }, alertFunc: () => { this.stateItem.sendCommand('OFF'); },
alertDelay: 'PT1M' alertDelay: 'PT59M'
}); });
} }
} }
@@ -54,7 +54,7 @@ class TowelRadiator extends Equipment {
this.autoOff = this.watch['state'].add({ this.autoOff = this.watch['state'].add({
targetState: 'ON', targetState: 'ON',
alertFunc: () => { this.stateItem.sendCommand('OFF'); }, alertFunc: () => { this.stateItem.sendCommand('OFF'); },
alertDelay: 'PT30M' alertDelay: 'PT59M'
}); });
} }
} }