mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 17:58:03 -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
|
@ -19,6 +19,7 @@
|
|||
#include "AstroBox.hpp"
|
||||
#include "Repetier.hpp"
|
||||
#include "MKS.hpp"
|
||||
#include "ESP3D.hpp"
|
||||
#include "../GUI/PrintHostDialogs.hpp"
|
||||
#include "Obico.hpp"
|
||||
#include "Flashforge.hpp"
|
||||
|
@ -57,6 +58,7 @@ PrintHost* PrintHost::get_print_host(DynamicPrintConfig *config)
|
|||
case htPrusaLink: return new PrusaLink(config);
|
||||
case htPrusaConnect: return new PrusaConnect(config);
|
||||
case htMKS: return new MKS(config);
|
||||
case htESP3D: return new ESP3D(config);
|
||||
case htObico: return new Obico(config);
|
||||
case htFlashforge: return new Flashforge(config);
|
||||
case htSimplyPrint: return new SimplyPrint(config);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue