Status is printed only in one line
This commit is contained in:
parent
b02724ae5d
commit
96b0d1e3bc
13
src/main.cpp
13
src/main.cpp
@ -82,10 +82,9 @@ float readTemperature(void)
|
||||
* (is called as fast as possible)
|
||||
*/
|
||||
void loop() {
|
||||
float temp = readTemperature();
|
||||
Serial.print("Temperature is ");
|
||||
float temp = readTemperature();
|
||||
Serial.print(temp);
|
||||
Serial.println(" deg C");
|
||||
Serial.print(";");
|
||||
|
||||
int fanSpeedPercent, actualFanSpeedRpm;
|
||||
|
||||
@ -97,16 +96,12 @@ void loop() {
|
||||
fanSpeedPercent = (100 - MIN_FAN_SPEED_PERCENT) * (temp - MIN_TEMP) / (MAX_TEMP - MIN_TEMP) + MIN_FAN_SPEED_PERCENT;
|
||||
}
|
||||
|
||||
Serial.print("Setting fan speed to ");
|
||||
Serial.print(fanSpeedPercent);
|
||||
Serial.println(" %");
|
||||
Serial.print("%;");
|
||||
setFanSpeedPercent(fanSpeedPercent);
|
||||
|
||||
actualFanSpeedRpm = getFanSpeedRpm();
|
||||
Serial.print("Fan speed is ");
|
||||
Serial.print(actualFanSpeedRpm);
|
||||
Serial.println(" RPM");
|
||||
|
||||
Serial.println();
|
||||
Serial.println("RPM");
|
||||
delay(DELAY_TIME);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user