From 642a6582598751daed538a274ff8fd30f2b447ec Mon Sep 17 00:00:00 2001 From: Imbus <> Date: Thu, 7 Nov 2024 01:54:54 +0100 Subject: [PATCH] ControllerTemp better defaults --- wash/src/wash/control/ControllerTemp.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wash/src/wash/control/ControllerTemp.java b/wash/src/wash/control/ControllerTemp.java index 90355b6..4fa3f29 100644 --- a/wash/src/wash/control/ControllerTemp.java +++ b/wash/src/wash/control/ControllerTemp.java @@ -11,7 +11,7 @@ public final class ControllerTemp extends ActorThread<WashingMessage> { public ControllerTemp(WashingIO io) { this.io = io; - heater = new Heater(40); + heater = new Heater(0); } protected void sendAck() { @@ -50,7 +50,7 @@ public final class ControllerTemp extends ActorThread<WashingMessage> { Heater(double target) { this.target = target; - this.hovering = false; + this.hovering = true; // No acks before actual setpoint is acquired } synchronized public void setTarget(double target) {