ExtUI additions (#18447)
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
c1dcc56a0b
commit
3b80690a71
@ -590,6 +590,8 @@ namespace ExtUI {
|
||||
#if HAS_FILAMENT_SENSOR
|
||||
bool getFilamentRunoutEnabled() { return runout.enabled; }
|
||||
void setFilamentRunoutEnabled(const bool value) { runout.enabled = value; }
|
||||
bool getFilamentRunoutState() { return runout.filament_ran_out; }
|
||||
void setFilamentRunoutState(const bool value) { runout.filament_ran_out = value; }
|
||||
|
||||
#if HAS_FILAMENT_RUNOUT_DISTANCE
|
||||
float getFilamentRunoutDistance_mm() { return runout.runout_distance(); }
|
||||
@ -884,6 +886,7 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
void injectCommands_P(PGM_P const gcode) { queue.inject_P(gcode); }
|
||||
void injectCommands(char * const gcode) { queue.inject(gcode); }
|
||||
|
||||
bool commandsInQueue() { return (planner.movesplanned() || queue.has_commands_queued()); }
|
||||
|
||||
|
@ -74,6 +74,7 @@ namespace ExtUI {
|
||||
bool canMove(const axis_t);
|
||||
bool canMove(const extruder_t);
|
||||
void injectCommands_P(PGM_P const);
|
||||
void injectCommands(char * const);
|
||||
bool commandsInQueue();
|
||||
|
||||
bool isHeaterIdle(const heater_t);
|
||||
@ -236,6 +237,8 @@ namespace ExtUI {
|
||||
#if HAS_FILAMENT_SENSOR
|
||||
bool getFilamentRunoutEnabled();
|
||||
void setFilamentRunoutEnabled(const bool);
|
||||
bool getFilamentRunoutState();
|
||||
void setFilamentRunoutState(const bool);
|
||||
|
||||
#if HAS_FILAMENT_RUNOUT_DISTANCE
|
||||
float getFilamentRunoutDistance_mm();
|
||||
|
Reference in New Issue
Block a user