|
|
|
@ -826,6 +826,15 @@ namespace ExtUI {
|
|
|
|
|
|
|
|
|
|
#endif // HAS_HOTEND_OFFSET
|
|
|
|
|
|
|
|
|
|
#if HAS_BED_PROBE
|
|
|
|
|
float getProbeOffset_mm(const axis_t axis) {
|
|
|
|
|
return probe.offset.pos[axis];
|
|
|
|
|
}
|
|
|
|
|
void setProbeOffset_mm(const float val, const axis_t axis) {
|
|
|
|
|
probe.offset.pos[axis] = val;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if ENABLED(BACKLASH_GCODE)
|
|
|
|
|
float getAxisBacklash_mm(const axis_t axis) { return backlash.distance_mm[axis]; }
|
|
|
|
|
void setAxisBacklash_mm(const float value, const axis_t axis)
|
|
|
|
@ -885,6 +894,47 @@ namespace ExtUI {
|
|
|
|
|
|
|
|
|
|
float getFeedrate_percent() { return feedrate_percentage; }
|
|
|
|
|
|
|
|
|
|
#if HAS_PID_HEATING
|
|
|
|
|
float getPIDValues_Kp(const extruder_t tool) {
|
|
|
|
|
return PID_PARAM(Kp, tool);
|
|
|
|
|
}
|
|
|
|
|
float getPIDValues_Ki(const extruder_t tool) {
|
|
|
|
|
return unscalePID_i(PID_PARAM(Ki, tool));
|
|
|
|
|
}
|
|
|
|
|
float getPIDValues_Kd(const extruder_t tool) {
|
|
|
|
|
return unscalePID_d(PID_PARAM(Kd, tool));
|
|
|
|
|
}
|
|
|
|
|
float getBedPIDValues_Kp() {
|
|
|
|
|
return thermalManager.temp_bed.pid.Kp;
|
|
|
|
|
}
|
|
|
|
|
float getBedPIDValues_Ki() {
|
|
|
|
|
return unscalePID_i(thermalManager.temp_bed.pid.Ki);
|
|
|
|
|
}
|
|
|
|
|
float getBedPIDValues_Kd() {
|
|
|
|
|
return unscalePID_d(thermalManager.temp_bed.pid.Kd);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void setPIDValues(const float p, const float i, const float d, extruder_t tool) {
|
|
|
|
|
thermalManager.temp_hotend[tool].pid.Kp = p;
|
|
|
|
|
thermalManager.temp_hotend[tool].pid.Ki = scalePID_i(i);
|
|
|
|
|
thermalManager.temp_hotend[tool].pid.Kd = scalePID_d(d);
|
|
|
|
|
thermalManager.updatePID();
|
|
|
|
|
}
|
|
|
|
|
void setBedPIDValues(const float p, const float i, const float d) {
|
|
|
|
|
thermalManager.temp_bed.pid.Kp = p;
|
|
|
|
|
thermalManager.temp_bed.pid.Ki = scalePID_i(i);
|
|
|
|
|
thermalManager.temp_bed.pid.Kd = scalePID_d(d);
|
|
|
|
|
thermalManager.updatePID();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void startPIDTune(const float temp, extruder_t tool){
|
|
|
|
|
thermalManager.PID_autotune(temp, (heater_ind_t)tool, 8, true);
|
|
|
|
|
}
|
|
|
|
|
void startBedPIDTune(const float temp) {
|
|
|
|
|
thermalManager.PID_autotune(temp, H_BED, 4, true);
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
void injectCommands_P(PGM_P const gcode) {
|
|
|
|
|
queue.inject_P(gcode);
|
|
|
|
|
}
|
|
|
|
|