Support for 3DPrinterOS cloud integration (#10403)

This commit is contained in:
3DPrinterOS SDK
2026-06-03 21:31:57 +03:00
committed by GitHub
parent 757b6a5c46
commit c467990724
7 changed files with 776 additions and 5 deletions

View File

@@ -27,6 +27,7 @@
#include "Flashforge.hpp"
#include "SimplyPrint.hpp"
#include "ElegooLink.hpp"
#include "3DPrinterOS.hpp"
namespace fs = boost::filesystem;
using boost::optional;
@@ -67,6 +68,7 @@ PrintHost* PrintHost::get_print_host(DynamicPrintConfig *config)
case htFlashforge: return new Flashforge(config);
case htSimplyPrint: return new SimplyPrint(config);
case htElegooLink: return new ElegooLink(config);
case ht3DPrinterOS: return new C3DPrinterOS(config);
default: return nullptr;
}
} else {