Update calib_dlg.cpp (#7867)

Added values for missing PCTG temperature range. Fixes bug #7323 which caused subsiquent values to not be correct.
This commit is contained in:
Mike Bignell 2025-01-02 09:47:21 +00:00 committed by GitHub
parent 2f55dd7cfe
commit 02438e25bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -227,6 +227,7 @@ enum FILAMENT_TYPE : int
tPLA = 0,
tABS_ASA,
tPETG,
tPCTG,
tTPU,
tPA_CF,
tPET_CF,
@ -384,6 +385,10 @@ void Temp_Calibration_Dlg::on_filament_type_changed(wxCommandEvent& event) {
start = 250;
end = 230;
break;
case tPCTG:
start = 240;
end = 280;
break;
case tTPU:
start = 240;
end = 210;