Skip to content

Commit

Permalink
Merge pull request #243 from Qrome/3.01
Browse files Browse the repository at this point in the history
fixed bug on 24 our view with invalid character
  • Loading branch information
Qrome authored May 10, 2022
2 parents bdac023 + 3534f73 commit b094dd8
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Marquee Scroller (Clock, Weather, News, and More)

## NOTICE
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.
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.
Make sure you update to the latest version of WifiManager library (link below).
* Removed Bitcoin features in 3.0

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

## Upgrading from version 2.5 or Higher
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.
* **marquee.ino.d1_mini_3.0.bin** - compiled for Wemos D1 Mini and standard 4x1 LED (default)
* **marquee.ino.d1_mini_wide_3.0.bin** - compiled for Wemos D1 Mini and double wide 8x1 LED display
* **marquee.ino.d1_mini_3.01.bin** - compiled for Wemos D1 Mini and standard 4x1 LED (default)
* **marquee.ino.d1_mini_wide_3.01.bin** - compiled for Wemos D1 Mini and double wide 8x1 LED display

## Compiling and Loading to Wemos D1
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.
Expand Down
Binary file removed marquee.ino.d1_mini_3.0.bin
Binary file not shown.
Binary file added marquee.ino.d1_mini_3.01.bin
Binary file not shown.
Binary file removed marquee.ino.d1_mini_wide_3.0.bin
Binary file not shown.
Binary file added marquee.ino.d1_mini_wide_3.01.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions marquee/marquee.ino
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

#include "Settings.h"

#define VERSION "3.0"
#define VERSION "3.01"

#define HOSTNAME "CLOCK-"
#define CONFIG "/conf.txt"
Expand Down Expand Up @@ -452,7 +452,7 @@ String zeroPad(int value) {

String hourMinutes(boolean isRefresh) {
if (IS_24HOUR) {
return hour() + secondsIndicator(isRefresh) + TimeDB.zeroPad(minute());
return String(hour()) + secondsIndicator(isRefresh) + TimeDB.zeroPad(minute());
} else {
return String(hourFormat12()) + secondsIndicator(isRefresh) + TimeDB.zeroPad(minute());
}
Expand Down

0 comments on commit b094dd8

Please sign in to comment.