diff --git a/Control/brewpi/astirrer.py b/Control/brewpi/astirrer.py index 9ab0a72..7fb6314 100644 --- a/Control/brewpi/astirrer.py +++ b/Control/brewpi/astirrer.py @@ -14,7 +14,7 @@ class AStirrer(abc.ABC): pass @abc.abstractmethod - def setRpm(self, rpm): + def setSpeed(self, speed): pass @abc.abstractmethod @@ -26,7 +26,7 @@ class AStirrer(abc.ABC): pass @abc.abstractmethod - def getRpm(self): + def getSpeed(self): return None @abc.abstractmethod