Add Astrobox to Print Host options

This commit is contained in:
Spencer Owen 2019-12-28 10:41:48 -07:00 committed by Vojtěch Bubník
parent afbc4a4cf2
commit e7b835dc52
7 changed files with 289 additions and 1 deletions

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 {