Sfoglia il codice sorgente

Add files via upload

pull/99/head
cocothenut GitHub 8 anni fa
parent
commit
91a7b65855
1 ha cambiato i file con 5 aggiunte e 3 eliminazioni
  1. +5
    -3
      modules/base_plugins/brew_steps/__init__.py

+ 5
- 3
modules/base_plugins/brew_steps/__init__.py Vedi File

@@ -56,9 +56,10 @@ class MashStep(StepBase):
# 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("Mash Step Completed!", "Starting the next step", timeout=None)
# if you dont want a beep sound comment out like : # cbpi.MashStepEndBeep() # if you dont want a beep sound comment out like : # cbpi.MashStepEndBeep()
cbpi.MashStepEndBeep() cbpi.MashStepEndBeep()
self.next()
self.next()
@cbpi.step @cbpi.step
@@ -224,6 +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)
# 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()
self.next()
cbpi.BoilStepEndBeep()
self.next()

Loading…
Annulla
Salva