Files
brewpi/components/aheater.py
jensandClaude Sonnet 5 f20e617d81 feat: add connect/disconnect status for real heater/stirrer hardware
Heater and Stirrer can be real serial hardware (hendi, Pololu1376), but
there was no connection concept at all - the constructors opened the
port and crashed the whole server if the device was missing, with no
way to see connection status or firmware version and no way to
reconnect without a restart.

Adds an observable Connectable mixin (components/connectable.py) shared
by AHeater/AStirrer; real devices defer opening the serial port to an
explicit connect(), auto-connect on server startup, and surface
Connected/FirmwareVersion/Simulated plus manual Connect/Disconnect over
the web GUI. Heating/stirring and Sud Start are all gated on connection
state, and a disconnect mid-brew force-stops the run via the same path
as a manual Stop.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01YaPLuRPpyjWcwhMvCvpHCL
2026-07-03 19:18:59 +02:00

55 lines
858 B
Python

import abc
from components.connectable import Connectable
from contextlib import contextmanager
class AHeater(Connectable):
def __init__(self, simulated=True):
Connectable.__init__(self, simulated)
self.is_active = False
@abc.abstractmethod
def get_power_min(self):
pass
@abc.abstractmethod
def get_power_max(self):
pass
@abc.abstractmethod
def get_powers(self):
pass
def close(self):
pass
@contextmanager
def open(self):
try:
self.activate(True)
yield None
finally:
self.activate(False)
return None
@abc.abstractmethod
def activate(self, enable):
self.is_active = enable
@abc.abstractmethod
def is_activated(self):
return self.is_active
@abc.abstractmethod
def process(self):
pass
@abc.abstractmethod
def set_power(self, power):
pass
@abc.abstractmethod
def get_power(self):
return None