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:
PreyK 2024-05-22 12:00:48 +02:00 committed by GitHub
parent 9ffe7b07e1
commit b021c615f5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 234 additions and 1 deletions

View file

@ -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);