Skip to content

Commit 3ec2fff

Browse files
authored
Merge pull request #64 from Qrome/2.5
2.5
2 parents 55f661b + 4e07f43 commit 3ec2fff

File tree

3 files changed

+134
-130
lines changed

3 files changed

+134
-130
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ SOFTWARE.
3333
* Option to display Bitcoin current value
3434
* Basic Authorization around Configuration web interface
3535
* Support for OTA (loading firmware over WiFi)
36+
* Update firmware through web interface
3637
* Configurable scroll speed
3738
* Configurable scrolling frequency
3839
* Configurable number of LED panels

marquee/Settings.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ SOFTWARE.
3838
#include <ESP8266WiFi.h>
3939
#include <ArduinoJson.h>
4040
#include <ESP8266WebServer.h>
41+
#include <ESP8266HTTPUpdateServer.h>
4142
#include <WiFiManager.h>
4243
#include <ESP8266mDNS.h>
4344
#include <ArduinoOTA.h>
@@ -86,7 +87,7 @@ boolean ADVICE_ENABLED = false;
8687
// DIN -> D7 (MOSI)
8788
const int pinCS = D6; // Attach CS to this pin, DIN to MOSI and CLK to SCK (cf http://arduino.cc/en/Reference/SPI )
8889
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
9091
const int numberOfVerticalDisplays = 1; // default 1 for a single row height
9192

9293
String timeDisplayTurnsOn = "06:30"; // 24 Hour Format HH:MM -- Leave blank for always on. (ie 05:30)

0 commit comments

Comments
 (0)