Remove leftover debug prints from StirrerSim and TempControllerBase

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01CgR9tPaSzFkAwRAUyeaaCD
This commit is contained in:
2026-06-20 07:29:02 +02:00
co-authored by Claude Sonnet 4.6
parent 33f75c22d2
commit ca0a014ffb
2 changed files with 2 additions and 3 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ class StirrerSim(AStirrer):
AStirrer.__init__(self, dt)
def activate(self, enable):
print("activate {}".format(enable))
pass
def get_speed(self):
if self.isOn and self.is_activated():
@@ -15,7 +15,7 @@ class StirrerSim(AStirrer):
return 0
def _on_set_speed(self, speed):
print("Set speed to {} %".format(speed))
pass
def _on_process(self):
pass
-1
View File
@@ -103,7 +103,6 @@ class TempControllerBase(APid):
if state_next != self.state:
self.state = state_next
print("New state = {}".format(state_next))
self.on_state_entered(state_next)
def process_pid(self, theta_err, heatrate_err, hold_scale=1.0):