Skip to content

Commit

Permalink
.02 floor on pid
Browse files Browse the repository at this point in the history
  • Loading branch information
eastein committed Sep 22, 2012
1 parent 5daa80a commit 5a49039
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chillmon
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,8 @@ class PID(object) :

print time.ctime(), 'PID output: %f' % self.fPID

if self.fPID * self.fPeriod < 30.0 :
# nope, it's less than 1%. just turn it off and leave it that way until next time
if self.fPID < 0.02 :
# nope, it's less than 2%. just turn it off and leave it that way until next time
self.events.append((now, False))
print time.ctime(), 'no chilling, pid output way low. just turning off'
else :
Expand Down

1 comment on commit 5a49039

@eastein
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixes #2

Please sign in to comment.