mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-04-06 00:32:05 +02:00
ENH: support nozzle refresh for H2D Pro
Jira: [STUDIO-13185] Change-Id: Ib8b5905c32f83b1f849ad4ed327c9d77826d6a18 (cherry picked from commit c603e0f88be71a301ed2fc7f6fff2a34398b6708)
This commit is contained in:
@@ -60,6 +60,7 @@
|
||||
"support_chamber_temp_switch_heating": 40,
|
||||
"support_extrusion_cali": false,
|
||||
"support_user_preset": false,
|
||||
"support_refresh_nozzle": true,
|
||||
"support_ams_ext_mix_print": true
|
||||
},
|
||||
"model_id": "O1E",
|
||||
|
||||
@@ -23,6 +23,12 @@ namespace Slic3r
|
||||
friend class DevNozzleSystemParser;
|
||||
public:
|
||||
DevNozzleSystem(MachineObject* owner) : m_owner(owner) {}
|
||||
private:
|
||||
enum Status : int
|
||||
{
|
||||
NOZZLE_SYSTEM_IDLE = 0,
|
||||
NOZZLE_SYSTEM_REFRESHING = 1,
|
||||
};
|
||||
|
||||
public:
|
||||
bool ContainsNozzle(int id) const { return m_nozzles.find(id) != m_nozzles.end(); }
|
||||
|
||||
Reference in New Issue
Block a user