| @@ -95,8 +95,8 @@ class MashInStep(StepBase): | |||||
| # Check if Target Temp is reached | # Check if Target Temp is reached | ||||
| if self.get_kettle_temp(self.kettle) >= float(self.temp) and self.s is False: | if self.get_kettle_temp(self.kettle) >= float(self.temp) and self.s is False: | ||||
| self.s = True | |||||
| self.notify("Step Temp Reached!", "Please press the next button to continue", timeout=None) | |||||
| self.s = True | |||||
| self.notify("Step Temp Reached!", "Please press the next button to continue", timeout=None) | |||||
| # if you dont want a beep sound comment out like : # cbpi.MashInStepEndBeep() | # if you dont want a beep sound comment out like : # cbpi.MashInStepEndBeep() | ||||
| cbpi.MashInStepEndBeep() | cbpi.MashInStepEndBeep() | ||||
| @@ -125,7 +125,7 @@ class ChilStep(StepBase): | |||||
| if self.is_timer_finished() == True: | if self.is_timer_finished() == True: | ||||
| # if you dont want a beep sound comment out like : # cbpi.ChilStepEndBeep() | # if you dont want a beep sound comment out like : # cbpi.ChilStepEndBeep() | ||||
| cbpi.ChilStepEndBeep() | cbpi.ChilStepEndBeep() | ||||
| self.next() | |||||
| self.next() | |||||
| @cbpi.step | @cbpi.step | ||||
| class PumpStep(StepBase): | class PumpStep(StepBase): | ||||
| @@ -155,7 +155,7 @@ class PumpStep(StepBase): | |||||
| if self.is_timer_finished() == True: | if self.is_timer_finished() == True: | ||||
| # if you dont want a beep sound comment out like : # cbpi.PumpStepEndBeep() | # if you dont want a beep sound comment out like : # cbpi.PumpStepEndBeep() | ||||
| cbpi.PumpStepEndBeep() | cbpi.PumpStepEndBeep() | ||||
| self.next() | |||||
| self.next() | |||||
| @cbpi.step | @cbpi.step | ||||
| class BoilStep(StepBase): | class BoilStep(StepBase): | ||||
| @@ -225,7 +225,7 @@ class BoilStep(StepBase): | |||||
| self.check_hop_timer(3, self.hop_3) | self.check_hop_timer(3, self.hop_3) | ||||
| # Check if timer finished and go to next step | # Check if timer finished and go to next step | ||||
| if self.is_timer_finished() == True: | if self.is_timer_finished() == True: | ||||
| self.notify("Boil Step Completed!", "Starting the next step", timeout=None) | |||||
| self.notify("Boil Step Completed!", "Starting the next step", timeout=None) | |||||
| # if you dont want a beep sound comment out like : # cbpi.BoilStepEndBeep() | # if you dont want a beep sound comment out like : # cbpi.BoilStepEndBeep() | ||||
| cbpi.BoilStepEndBeep() | cbpi.BoilStepEndBeep() | ||||
| self.next() | self.next() | ||||