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