🧑💻 Add ExtUI::onLevelingDone, match DWIN to ExtUI
This commit is contained in:
@@ -172,7 +172,8 @@ namespace ExtUI {
|
||||
float getMeshPoint(const xy_uint8_t &pos);
|
||||
void setMeshPoint(const xy_uint8_t &pos, const_float_t zval);
|
||||
void moveToMeshPoint(const xy_uint8_t &pos, const_float_t z);
|
||||
void onMeshLevelingStart();
|
||||
void onLevelingStart();
|
||||
void onLevelingDone();
|
||||
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const_float_t zval);
|
||||
inline void onMeshUpdate(const xy_int8_t &pos, const_float_t zval) { onMeshUpdate(pos.x, pos.y, zval); }
|
||||
|
||||
@@ -403,14 +404,14 @@ namespace ExtUI {
|
||||
void onPrintTimerStarted();
|
||||
void onPrintTimerPaused();
|
||||
void onPrintTimerStopped();
|
||||
void onPrintFinished();
|
||||
void onPrintDone();
|
||||
void onFilamentRunout(const extruder_t extruder);
|
||||
void onUserConfirmRequired(const char * const msg);
|
||||
void onUserConfirmRequired(FSTR_P const fstr);
|
||||
void onStatusChanged(const char * const msg);
|
||||
void onStatusChanged(FSTR_P const fstr);
|
||||
void onHomingStart();
|
||||
void onHomingComplete();
|
||||
void onHomingDone();
|
||||
void onSteppersDisabled();
|
||||
void onSteppersEnabled();
|
||||
void onFactoryReset();
|
||||
|
||||
Reference in New Issue
Block a user