Improve M600 with timeout, wait for heatup.
This commit is contained in:
parent
58b8e0cae7
commit
8bf0b496b9
11 changed files with 212 additions and 18 deletions
|
|
@ -217,6 +217,10 @@ void Endstops::M119() {
|
|||
SERIAL_PROTOCOLPGM(MSG_Z_PROBE);
|
||||
SERIAL_PROTOCOLLN(((READ(Z_MIN_PROBE_PIN)^Z_MIN_PROBE_ENDSTOP_INVERTING) ? MSG_ENDSTOP_HIT : MSG_ENDSTOP_OPEN));
|
||||
#endif
|
||||
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
||||
SERIAL_PROTOCOLPGM(MSG_FILAMENT_RUNOUT_SENSOR);
|
||||
SERIAL_PROTOCOLLN(((READ(FIL_RUNOUT_PIN)^FIL_RUNOUT_INVERTING) ? MSG_ENDSTOP_HIT : MSG_ENDSTOP_OPEN));
|
||||
#endif
|
||||
} // Endstops::M119
|
||||
|
||||
#if ENABLED(Z_DUAL_ENDSTOPS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue