Skip to content

Commit c0d3261

Browse files
authored
Merge pull request #221 from Qrome/release/2.19
updated binary
2 parents 6135f75 + 31e5d97 commit c0d3261

4 files changed

+4
-4
lines changed
Binary file not shown.
Binary file not shown.

Diff for: marquee/OpenWeatherMapClient.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -256,12 +256,12 @@ String OpenWeatherMapClient::getPressure(int index)
256256

257257
String OpenWeatherMapClient::getHigh(int index)
258258
{
259-
return weathers[index].high;
259+
return roundValue(weathers[index].high);
260260
}
261261

262262
String OpenWeatherMapClient::getLow(int index)
263263
{
264-
return weathers[index].low;
264+
return roundValue(weathers[index].low);
265265
}
266266

267267
String OpenWeatherMapClient::getIcon(int index) {

Diff for: marquee/marquee.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
#include "Settings.h"
2929

30-
#define VERSION "2.18"
30+
#define VERSION "2.19"
3131

3232
#define HOSTNAME "CLOCK-"
3333
#define CONFIG "/conf.txt"
@@ -121,7 +121,7 @@ static const char CHANGE_FORM1[] PROGMEM = "<form class='w3-container' action='/
121121
"<p><input name='metric' class='w3-check w3-margin-top' type='checkbox' %CHECKED%> Use Metric (Celsius)</p>"
122122
"<p><input name='showdate' class='w3-check w3-margin-top' type='checkbox' %DATE_CHECKED%> Display Date</p>"
123123
"<p><input name='showcity' class='w3-check w3-margin-top' type='checkbox' %CITY_CHECKED%> Display City Name</p>"
124-
"<p><input name='showhighlow' class='w3-check w3-margin-top' type='checkbox' %HIGHLOW_CHECKED%> Display Daily High/Low Temperatures</p>"
124+
"<p><input name='showhighlow' class='w3-check w3-margin-top' type='checkbox' %HIGHLOW_CHECKED%> Display Current High/Low Temperatures</p>"
125125
"<p><input name='showcondition' class='w3-check w3-margin-top' type='checkbox' %CONDITION_CHECKED%> Display Weather Condition</p>"
126126
"<p><input name='showhumidity' class='w3-check w3-margin-top' type='checkbox' %HUMIDITY_CHECKED%> Display Humidity</p>"
127127
"<p><input name='showwind' class='w3-check w3-margin-top' type='checkbox' %WIND_CHECKED%> Display Wind</p>"

0 commit comments

Comments
 (0)