File tree 3 files changed +134
-130
lines changed
3 files changed +134
-130
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ SOFTWARE.
33
33
* Option to display Bitcoin current value
34
34
* Basic Authorization around Configuration web interface
35
35
* Support for OTA (loading firmware over WiFi)
36
+ * Update firmware through web interface
36
37
* Configurable scroll speed
37
38
* Configurable scrolling frequency
38
39
* Configurable number of LED panels
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ SOFTWARE.
38
38
#include <ESP8266WiFi.h>
39
39
#include <ArduinoJson.h>
40
40
#include <ESP8266WebServer.h>
41
+ #include <ESP8266HTTPUpdateServer.h>
41
42
#include <WiFiManager.h>
42
43
#include <ESP8266mDNS.h>
43
44
#include <ArduinoOTA.h>
@@ -86,7 +87,7 @@ boolean ADVICE_ENABLED = false;
86
87
// DIN -> D7 (MOSI)
87
88
const int pinCS = D6 ; // Attach CS to this pin, DIN to MOSI and CLK to SCK (cf http://arduino.cc/en/Reference/SPI )
88
89
int displayIntensity = 1 ; //(This can be set from 1 - 15)
89
- const int numberOfHorizontalDisplays = 4 ; // default 4 for standard 4 x 1 display Max size of 16
90
+ const int numberOfHorizontalDisplays = 8 ; // default 4 for standard 4 x 1 display Max size of 16
90
91
const int numberOfVerticalDisplays = 1 ; // default 1 for a single row height
91
92
92
93
String timeDisplayTurnsOn = "06:30" ; // 24 Hour Format HH:MM -- Leave blank for always on. (ie 05:30)
You can’t perform that action at this time.
0 commit comments