1
0
Fork 0
This commit is contained in:
Sangbum Kim 2017-09-07 02:02:48 +09:00
parent e1fc8d9dc2
commit dbde808411
1 changed files with 2 additions and 2 deletions

View File

@ -132,8 +132,8 @@ func CpuTempetureMonitoring(info *Processor, sampleDuration time.Duration, notif
func CpuTempetureScraper(processorCount int, notifier <-chan TempetureChange, errorChan chan<- error, ctx context.Context, waiter *sync.WaitGroup) {
defer waiter.Done()
var (
P, I, D = 1.5, 0.4, 1.0
SetPoint = 35.0
P, I, D = 1.5, 0.4, 2.0
SetPoint = 37.0
SampleTime = time.Second
maxNoob, minNoob = 0x64, 0x4
WindupGuard = float64(maxNoob - minNoob)