Stairs/src/debug.cpp
Mark van Renswoude 0aca40c71e Fixed firmware uploading
GZipped HTML, JS and CSS
Added gulp task for copying firmware binary to bin folder
2018-01-03 21:45:14 +01:00

18 lines
325 B
C++

/*
* Stairs
* Copyright 2017 (c) Mark van Renswoude
*
* https://git.x2software.net/pub/Stairs
*/
#include "debug.h"
void _dinit()
{
#ifdef SerialDebug
Serial.begin(SerialDebugBaudrate);
// Enable if you want detailed WiFi state logging
//Serial.setDebugOutput(true);
delay(SerialDebugStartupDelay);
#endif
}