minimize startup time

This commit is contained in:
2018-10-07 11:47:57 +02:00
parent b91255fe85
commit 75a4e3e94c
2 changed files with 1 additions and 2 deletions

View File

@@ -8,7 +8,7 @@
// Chip config
#define SPROCKET_TYPE "ILLUCAT"
#define SERIAL_BAUD_RATE 115200
#define STARTUP_DELAY 3000
#define STARTUP_DELAY 1000
// Mesh config
#define SPROCKET_MODE 0

View File

@@ -15,7 +15,6 @@ MeshCat sprocket(
);
void setup() {
delay(STARTUP_DELAY);
sprocket.join(net);
}