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:
Marek Bel 2019-01-24 21:02:04 +01:00
parent 305598d7f6
commit 1c4f3259ea

View file

@ -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;
}