Skip to content

Commit 3534f73

Browse files
committed
fixed bug on 24 our view with invalid character
1 parent bdac023 commit 3534f73

File tree

6 files changed

+5
-5
lines changed

6 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Marquee Scroller (Clock, Weather, News, and More)
22

33
## NOTICE
4-
The latest version of Marquee Scroller 3.0 works with **ESP8266 Core 3.0.2** -- if you are upgrading from Marquee Scroller 2.X version this may require you to enter in all your API Keys and settings. Always meake sure you have coppied all your API keys somewhere before updating. The ESP8266 Core 3.0.2 uses the newer FS (file system) that may require a fresh start on the configuration.
4+
The latest version of Marquee Scroller 3.01 works with **ESP8266 Core 3.0.2** -- if you are upgrading from Marquee Scroller 2.X version this may require you to enter in all your API Keys and settings. Always meake sure you have coppied all your API keys somewhere before updating. The ESP8266 Core 3.0.2 uses the newer FS (file system) that may require a fresh start on the configuration.
55
Make sure you update to the latest version of WifiManager library (link below).
66
* Removed Bitcoin features in 3.0
77

@@ -43,8 +43,8 @@ Double Wide LED version: https://www.thingiverse.com/thing:2989552
4343

4444
## Upgrading from version 2.5 or Higher
4545
In version 2.6 and higher, the binary files that can be uploaded to your marque scrolling clock via the web interface. From the main menu in the web interface select "Firmware Update" and follow the prompts.
46-
* **marquee.ino.d1_mini_3.0.bin** - compiled for Wemos D1 Mini and standard 4x1 LED (default)
47-
* **marquee.ino.d1_mini_wide_3.0.bin** - compiled for Wemos D1 Mini and double wide 8x1 LED display
46+
* **marquee.ino.d1_mini_3.01.bin** - compiled for Wemos D1 Mini and standard 4x1 LED (default)
47+
* **marquee.ino.d1_mini_wide_3.01.bin** - compiled for Wemos D1 Mini and double wide 8x1 LED display
4848

4949
## Compiling and Loading to Wemos D1
5050
It is recommended to use Arduino IDE. You will need to configure Arduino IDE to work with the Wemos board and USB port and installed the required USB drivers etc.

marquee.ino.d1_mini_3.0.bin

-487 KB
Binary file not shown.

marquee.ino.d1_mini_3.01.bin

458 KB
Binary file not shown.

marquee.ino.d1_mini_wide_3.0.bin

-488 KB
Binary file not shown.

marquee.ino.d1_mini_wide_3.01.bin

459 KB
Binary file not shown.

marquee/marquee.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
#include "Settings.h"
2929

30-
#define VERSION "3.0"
30+
#define VERSION "3.01"
3131

3232
#define HOSTNAME "CLOCK-"
3333
#define CONFIG "/conf.txt"
@@ -452,7 +452,7 @@ String zeroPad(int value) {
452452

453453
String hourMinutes(boolean isRefresh) {
454454
if (IS_24HOUR) {
455-
return hour() + secondsIndicator(isRefresh) + TimeDB.zeroPad(minute());
455+
return String(hour()) + secondsIndicator(isRefresh) + TimeDB.zeroPad(minute());
456456
} else {
457457
return String(hourFormat12()) + secondsIndicator(isRefresh) + TimeDB.zeroPad(minute());
458458
}

0 commit comments

Comments
 (0)