mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-30 21:58:06 +00:00
📝 Update ExtUI example
This commit is contained in:
parent
3995e8373c
commit
f60965a107
1 changed files with 6 additions and 0 deletions
|
@ -119,6 +119,12 @@ namespace ExtUI {
|
|||
#if HAS_PID_HEATING
|
||||
void onPidTuning(const result_t rst) {
|
||||
// Called for temperature PID tuning result
|
||||
switch (rst) {
|
||||
case PID_BAD_EXTRUDER_NUM: break;
|
||||
case PID_TEMP_TOO_HIGH: break;
|
||||
case PID_TUNING_TIMEOUT: break;
|
||||
case PID_DONE: break;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue