mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 23:17:35 -06:00
ENH:support setting chamber temperature
Change-Id: Icacd3f248a8f4dbff6c928e666f986c62801eebd Signed-off-by: Stone Li <stone.li@bambulab.com> (cherry picked from commit 6074340b1c3bd49b7e767384116fa73e96cd4ba9)
This commit is contained in:
parent
3595310b09
commit
8177453d22
4 changed files with 37 additions and 5 deletions
|
@ -556,6 +556,7 @@ public:
|
|||
float bed_temp;
|
||||
float bed_temp_target;
|
||||
float chamber_temp;
|
||||
int chamber_temp_target;
|
||||
float frame_temp;
|
||||
|
||||
/* cooling */
|
||||
|
@ -793,6 +794,7 @@ public:
|
|||
int command_task_resume();
|
||||
int command_set_bed(int temp);
|
||||
int command_set_nozzle(int temp);
|
||||
int command_set_chamber(int temp);
|
||||
// ams controls
|
||||
int command_ams_switch(int tray_index, int old_temp = 210, int new_temp = 210);
|
||||
int command_ams_change_filament(int tray_id, int old_temp = 210, int new_temp = 210);
|
||||
|
@ -958,6 +960,7 @@ public:
|
|||
static std::vector<std::string> get_resolution_supported(std::string type_str);
|
||||
|
||||
static bool get_bed_temperature_limit(std::string type_str, int& limit);
|
||||
static bool get_nozzle_max_temperature(std::string type_str, int& limit);
|
||||
static bool load_functional_config(std::string config_file);
|
||||
static bool load_filaments_blacklist_config(std::string config_file);
|
||||
static void check_filaments_in_blacklist(std::string tag_vendor, std::string tag_type, bool& in_blacklist, std::string& ac, std::string& info);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue