We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5100467 commit 95e214aCopy full SHA for 95e214a
sevensegwordclock/sevensegwordclock.ino
@@ -1,3 +1,4 @@
1
+// Use "NodeMCU 0.9 (ESP-12) to program (NOT Generic8266)
2
#include "config.h"
3
#include <ESP8266WiFi.h>
4
#include <time.h>
@@ -32,7 +33,6 @@ void setup() {
32
33
Serial.begin(115200);
34
35
Serial.println("Hello 7seg Clock serial");
- delay(2000);
36
display.showTextScroll("Connecting");
37
38
WiFi.begin(ssid, pass); // send credentials
@@ -44,6 +44,9 @@ void setup() {
44
display.showText(".", dot++, 1);
45
}
46
Serial.println("Connected");
47
+ display.showTextScroll("Connected");
48
+ delay(1000);
49
+
50
// implement NTP update of timekeeping (with automatic hourly updates)
51
configTime(0, 0, "0.pool.ntp.org");
52
0 commit comments