initial commit

This commit is contained in:
2018-11-15 14:58:52 +01:00
commit 07893198c3
12 changed files with 361 additions and 0 deletions

11
src/TemplatePlugin.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "TemplatePlugin.h"
TemplatePlugin::TemplatePlugin(TemplateConfig cfg)
{
templateConfig = cfg;
}
void TemplatePlugin::activate(Scheduler *scheduler)
{
PRINT_MSG(Serial, "TEMPLATE", "plugin activated");
}