Increase heater check minimum expected temperature rises.
Bed increased from 3 to 10 K. Nozzle increased from 10 to 30 K. Measured rises with my MK3 printer: Bed 26K, Nozzle 73K.
This commit is contained in:
parent
305598d7f6
commit
1c4f3259ea
1 changed files with 3 additions and 2 deletions
|
@ -6847,9 +6847,10 @@ static bool lcd_selfcheck_check_heater(bool _isbed)
|
|||
MYSERIAL.print("Opposite result:");
|
||||
MYSERIAL.println(_opposite_result);
|
||||
*/
|
||||
if (_opposite_result < ((_isbed) ? 10 : 3))
|
||||
|
||||
if (_opposite_result < ((_isbed) ? 30 : 9))
|
||||
{
|
||||
if (_checked_result >= ((_isbed) ? 3 : 10))
|
||||
if (_checked_result >= ((_isbed) ? 9 : 30))
|
||||
{
|
||||
_stepresult = true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue