diff --git a/Control/brewpi/stirrer.py b/Control/brewpi/stirrer.py index ae4f6f8..ce0126f 100644 --- a/Control/brewpi/stirrer.py +++ b/Control/brewpi/stirrer.py @@ -2,8 +2,8 @@ from astirrer import AStirrer import time class Stirrer(AStirrer): - def __init__(self, dt): - super(Stirrer, self).__init__(dt) + def __init__(self, params): + super(Stirrer, self).__init__(params['dt']) self.isMasterOn = 0 def __del__(self):