Skip to content

Commit c1ae102

Browse files
authored
Merge pull request #109 from Qrome/2.11
2.11
2 parents 8f2957f + a8f5bc0 commit c1ae102

File tree

9 files changed

+500
-512
lines changed

9 files changed

+500
-512
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ Version 2.5 introduced the ability to upgrade pre-compiled firmware from a binar
6868
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.
6969
* USB CH340G drivers: https://wiki.wemos.cc/downloads
7070
* Enter http://arduino.esp8266.com/stable/package_esp8266com_index.json into Additional Board Manager URLs field. You can add multiple URLs, separating them with commas. This will add support for the Wemos D1 Mini to Arduino IDE.
71-
* Open Boards Manager from Tools > Board menu and install esp8266 platform (and don't forget to select your ESP8266 board from Tools > Board menu after installation).
72-
* Select Board: "WeMos D1 R2 & mini" or "LOLIN(WEMOS) D1 R2 & mini"
73-
* Set 1M SPIFFS -- **this project requires SPIFFS for saving and reading configuration settings.**
71+
* Open Boards Manager from Tools > Board menu and install esp8266 Core platform version **2.5.0**
72+
* Select Board: "LOLIN(WEMOS) D1 R2 & mini"
73+
* Set 1M SPIFFS -- **this project requires SPIFFS for saving and reading configuration settings.**
74+
* Select the **Port** from the tools menu.
7475

7576
## Loading Supporting Library Files in Arduino
7677
Use the Arduino guide for details on how to installing and manage libraries https://www.arduino.cc/en/Guide/Libraries
@@ -122,9 +123,10 @@ Please do not feel obligated, but donations and tips are warmly welcomed. I hav
122123
## Contributors
123124
David Payne
124125
Nathan Glaus
125-
Daniel Eichhorn -- Author of the TimeClient class
126+
Daniel Eichhorn -- Author of the TimeClient class (in older versions)
126127
yanvigdev
127128
nashiko-s
129+
magnum129
128130

129131
Contributing to this software is warmly welcomed. You can do this basically by forking from master, committing modifications and then making a pulling requests against the latest DEV branch to be reviewed (follow the links above for operating guide). Detailed comments are encouraged. Adding change log and your contact into file header is encouraged. Thanks for your contribution.
130132

Binary file not shown.
Binary file not shown.

marquee/NewsApiClient.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,5 +186,7 @@ String NewsApiClient::cleanText(String text) {
186186
text.replace("Ä", "Ae");
187187
text.replace("ä", "ae");
188188
text.replace("ß", "ss");
189+
text.replace("»", "'");
190+
text.replace("«", "'");
189191
return text;
190192
}

0 commit comments

Comments
 (0)