This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
michal
/
craftbeerpi3
mirror of
https://github.com/Manuel83/craftbeerpi3
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
2
Wiki
Activity
Browse Source
corrected tagging of actual brew process for storing in time serires db
pull/194/head
Johannes
7 years ago
parent
c34939ff40
commit
8e4f509e0b
2 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
modules/core/core.py
+1
-0
modules/steps/__init__.py
+ 2
- 1
modules/core/core.py
View File
@@ -222,7 +222,8 @@ class CraftBeerPi(ActorAPI, SensorAPI):
"messages": [],
"plugins": {},
"fermentation_controller_types": {},
"fermenter_task": {}
"fermenter_task": {},
"active_brew": "none"
}
buzzer = None
eventbus = {}
+ 1
- 0
modules/steps/__init__.py
View File
@@ -94,6 +94,7 @@ class StepView(BaseView):
self.model.reset_all_steps()
self.stop_step()
cbpi.emit("UPDATE_ALL_STEPS", self.model.get_all())
cbpi.cache["active_brew"] = "none"
return ('', 204)
def stop_step(self):
Write
Preview
Loading…
Cancel
Save