Support for Obico cloud integration (#4116)

support obico (#3)

Add printer support for Obico cloud.

---------

Co-authored-by: zzh <anjingxw@126.com>
This commit is contained in:
Kenneth Jiang
2024-02-27 06:04:51 -08:00
committed by GitHub
parent 047b889ba6
commit 8c941df4e8
11 changed files with 519 additions and 2 deletions

View File

@@ -20,6 +20,7 @@
#include "Repetier.hpp"
#include "MKS.hpp"
#include "../GUI/PrintHostDialogs.hpp"
#include "Obico.hpp"
namespace fs = boost::filesystem;
using boost::optional;
@@ -54,6 +55,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 htObico: return new Obico(config);
default: return nullptr;
}
} else {