Skip to content

Commit

Permalink
Fixt to display power in actor button when tunig starts
Browse files Browse the repository at this point in the history
  • Loading branch information
avollkopf committed Feb 10, 2022
1 parent 92a7bc4 commit badb161
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@

Changelog:

- 09.02.22: (0.0.7): Added default target temp in case user did not choose target temp and alarm if target temp is below current temp
- 10.02.22: (0.0.8): Fix to display correct power in actor button and mqtt when process is starting
- 09.02.22: (0.0.7): Added default target temp in case user did not choose target tamp and alarm if target temp is below current temp
- 20.11.21: (0.0.6): Switch heater off at end of autotune. Usage of power settings (cbpi >= 4.0.0.45 required)
- 15.11.21: (0.0.5): Updated README
- 02.04.21: (0.0.4): Bug fixing
Expand Down
2 changes: 1 addition & 1 deletion cbpi4-PID_AutoTune/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async def run(self):
outstep = float(self.props.get("Output_Step", 100))
outmax = float(self.props.get("Max_Output", 100))
lookbackSec = float(self.props.get("lockback_seconds", 30))
heat_percent_old = 100
heat_percent_old = 0
try:
atune = AutoTuner(setpoint, outstep, sampleTime, lookbackSec, 0, outmax)
except Exception as e:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
long_description = f.read()

setup(name='cbpi4-PID_AutoTune',
version='0.0.7',
version='0.0.8',
description='CraftBeerPi4 Kettle Logic for PID Auto Tune',
author='Alexander Vollkopf',
author_email='[email protected]',
Expand Down

0 comments on commit badb161

Please sign in to comment.