mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 06:57:36 -06:00
ESP3D printer connection for wireless printing (#5399)
* ESP3D connector WIP * Update PrintConfig.cpp * Update ESP3D.cpp * Update ESP3D.cpp * prog * works & ugly * Update ESP3D.cpp * ESP3D prints * comments * this fails on *nix, use format_error instead --------- Co-authored-by: SoftFever <softfeverever@gmail.com>
This commit is contained in:
parent
9ffe7b07e1
commit
b021c615f5
6 changed files with 234 additions and 1 deletions
|
@ -103,6 +103,7 @@ static t_config_enum_values s_keys_map_PrintHostType {
|
|||
{ "astrobox", htAstroBox },
|
||||
{ "repetier", htRepetier },
|
||||
{ "mks", htMKS },
|
||||
{ "esp3d", htESP3D },
|
||||
{ "obico", htObico },
|
||||
{ "flashforge", htFlashforge },
|
||||
{ "simplyprint", htSimplyPrint },
|
||||
|
@ -3148,6 +3149,7 @@ def = this->add("filament_loading_speed", coFloats);
|
|||
def->enum_values.push_back("astrobox");
|
||||
def->enum_values.push_back("repetier");
|
||||
def->enum_values.push_back("mks");
|
||||
def->enum_values.push_back("esp3d");
|
||||
def->enum_values.push_back("obico");
|
||||
def->enum_values.push_back("flashforge");
|
||||
def->enum_values.push_back("simplyprint");
|
||||
|
@ -3159,6 +3161,7 @@ def = this->add("filament_loading_speed", coFloats);
|
|||
def->enum_labels.push_back("AstroBox");
|
||||
def->enum_labels.push_back("Repetier");
|
||||
def->enum_labels.push_back("MKS");
|
||||
def->enum_labels.push_back("ESP3D");
|
||||
def->enum_labels.push_back("Obico");
|
||||
def->enum_labels.push_back("Flashforge");
|
||||
def->enum_labels.push_back("SimplyPrint");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue