mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-13 09:47:58 -06:00
Add support for creality print
This commit is contained in:
parent
17492c1e5b
commit
735d179f1a
7 changed files with 285 additions and 2 deletions
|
@ -20,6 +20,7 @@
|
|||
#include "Repetier.hpp"
|
||||
#include "MKS.hpp"
|
||||
#include "ESP3D.hpp"
|
||||
#include "CrealityPrint.hpp"
|
||||
#include "../GUI/PrintHostDialogs.hpp"
|
||||
#include "../GUI/MainFrame.hpp"
|
||||
#include "Obico.hpp"
|
||||
|
@ -60,6 +61,7 @@ PrintHost* PrintHost::get_print_host(DynamicPrintConfig *config)
|
|||
case htPrusaConnect: return new PrusaConnect(config);
|
||||
case htMKS: return new MKS(config);
|
||||
case htESP3D: return new ESP3D(config);
|
||||
case htCrealityPrint: return new CrealityPrint(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