From 231675ff9c7514fe5ef392770bd2b1d9275e6219 Mon Sep 17 00:00:00 2001 From: Jens Ahrensfeld Date: Mon, 25 Mar 2019 19:43:07 +0000 Subject: [PATCH] - refactored git-svn-id: http://moon:8086/svn/projects/HendiControl@132 fda53097-d464-4ada-af97-ba876c37ca34 --- Control/brewpi/astirrer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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