mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 05:37:52 -06:00
Add Creality Print support (#6928)
# Description Added support for Creality Print (E.g. Orca can upload and print directly to Ender 3 V3 KE) # Screenshots/Recordings/Graphs Video: https://www.youtube.com/watch?v=ONzaMJhj_Hk ## Tests Tested in the video above on a Macbook Pro, Ender 3 V3 KE. It should also be tested on Windows but I don't have a windows computer.
This commit is contained in:
commit
5cf16b9b5d
7 changed files with 292 additions and 2 deletions
|
@ -78,6 +78,7 @@ static t_config_enum_values s_keys_map_PrintHostType {
|
|||
{ "prusalink", htPrusaLink },
|
||||
{ "prusaconnect", htPrusaConnect },
|
||||
{ "octoprint", htOctoPrint },
|
||||
{ "crealityprint", htCrealityPrint },
|
||||
{ "duet", htDuet },
|
||||
{ "flashair", htFlashAir },
|
||||
{ "astrobox", htAstroBox },
|
||||
|
@ -3401,6 +3402,7 @@ void PrintConfigDef::init_fff_params()
|
|||
def->enum_values.push_back("repetier");
|
||||
def->enum_values.push_back("mks");
|
||||
def->enum_values.push_back("esp3d");
|
||||
def->enum_values.push_back("crealityprint");
|
||||
def->enum_values.push_back("obico");
|
||||
def->enum_values.push_back("flashforge");
|
||||
def->enum_values.push_back("simplyprint");
|
||||
|
@ -3413,6 +3415,7 @@ void PrintConfigDef::init_fff_params()
|
|||
def->enum_labels.push_back("Repetier");
|
||||
def->enum_labels.push_back("MKS");
|
||||
def->enum_labels.push_back("ESP3D");
|
||||
def->enum_labels.push_back("CrealityPrint");
|
||||
def->enum_labels.push_back("Obico");
|
||||
def->enum_labels.push_back("Flashforge");
|
||||
def->enum_labels.push_back("SimplyPrint");
|
||||
|
|
|
@ -42,7 +42,7 @@ enum class FuzzySkinType {
|
|||
};
|
||||
|
||||
enum PrintHostType {
|
||||
htPrusaLink, htPrusaConnect, htOctoPrint, htDuet, htFlashAir, htAstroBox, htRepetier, htMKS, htESP3D, htObico, htFlashforge, htSimplyPrint
|
||||
htPrusaLink, htPrusaConnect, htOctoPrint, htDuet, htFlashAir, htAstroBox, htRepetier, htMKS, htESP3D, htCrealityPrint, htObico, htFlashforge, htSimplyPrint
|
||||
};
|
||||
|
||||
enum AuthorizationType {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue