Add Astrobox to Print Host options

This commit is contained in:
Spencer Owen
2020-01-06 03:37:35 -05:00
committed by Vojtěch Bubník
parent afbc4a4cf2
commit e7b835dc52
7 changed files with 289 additions and 1 deletions
+2
View File
@@ -15,6 +15,7 @@
#include "OctoPrint.hpp"
#include "Duet.hpp"
#include "FlashAir.hpp"
#include "AstroBox.hpp"
#include "../GUI/PrintHostDialogs.hpp"
namespace fs = boost::filesystem;
@@ -45,6 +46,7 @@ PrintHost* PrintHost::get_print_host(DynamicPrintConfig *config)
case htOctoPrint: return new OctoPrint(config);
case htDuet: return new Duet(config);
case htFlashAir: return new FlashAir(config);
case htAstroBox: return new AstroBox(config);
default: return nullptr;
}
} else {