From e758c2295dd19637b0136ec5163023c0cbdb6d04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Sun, 26 Feb 2017 00:20:11 +0100 Subject: [PATCH] Restore small delay before wifi to allow autoconnection --- code/espurna/espurna.ino | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/espurna/espurna.ino b/code/espurna/espurna.ino index b8e3516f..e9174bba 100644 --- a/code/espurna/espurna.ino +++ b/code/espurna/espurna.ino @@ -122,6 +122,9 @@ void setup() { relaySetup(); buttonSetup(); ledSetup(); + + delay(500); + wifiSetup(); otaSetup(); mqttSetup();