cleanup examples, build and ci

This commit is contained in:
2018-11-08 15:25:17 +01:00
parent 12b9a7b509
commit 7273ee6a0b
14 changed files with 65 additions and 102 deletions

View File

@@ -0,0 +1,21 @@
#include "config.h"
#include "MeshApp.h"
MeshApp sprocket(
{STARTUP_DELAY, SERIAL_BAUD_RATE},
{SPROCKET_MODE, WIFI_CHANNEL,
MESH_PORT, MESH_PREFIX, MESH_PASSWORD,
STATION_SSID, STATION_PASSWORD, HOSTNAME,
MESH_DEBUG_TYPES});
void setup()
{
delay(3000);
sprocket.activate();
}
void loop()
{
sprocket.loop();
yield();
}