whitespace correction
This commit is contained in:
parent
73708ec883
commit
7c4fce7876
1 changed files with 4 additions and 4 deletions
|
@ -6407,10 +6407,10 @@ Sigma_Exit:
|
||||||
codenum = millis();
|
codenum = millis();
|
||||||
cancel_heatup = false;
|
cancel_heatup = false;
|
||||||
|
|
||||||
bool is_pinda_cooling = false;
|
bool is_pinda_cooling = false;
|
||||||
if ((degTargetBed() == 0) && (degTargetHotend(0) == 0)) {
|
if ((degTargetBed() == 0) && (degTargetHotend(0) == 0)) {
|
||||||
is_pinda_cooling = true;
|
is_pinda_cooling = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
while ( ((!is_pinda_cooling) && (!cancel_heatup) && (current_temperature_pinda < set_target_pinda)) || (is_pinda_cooling && (current_temperature_pinda > set_target_pinda)) ) {
|
while ( ((!is_pinda_cooling) && (!cancel_heatup) && (current_temperature_pinda < set_target_pinda)) || (is_pinda_cooling && (current_temperature_pinda > set_target_pinda)) ) {
|
||||||
if ((millis() - codenum) > 1000) //Print Temp Reading every 1 second while waiting.
|
if ((millis() - codenum) > 1000) //Print Temp Reading every 1 second while waiting.
|
||||||
|
|
Loading…
Reference in a new issue