Skip to content

Commit

Permalink
Merge pull request #221 from Qrome/release/2.19
Browse files Browse the repository at this point in the history
updated binary
  • Loading branch information
Qrome authored Mar 29, 2022
2 parents 6135f75 + 31e5d97 commit c0d3261
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions marquee/OpenWeatherMapClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -256,12 +256,12 @@ String OpenWeatherMapClient::getPressure(int index)

String OpenWeatherMapClient::getHigh(int index)
{
return weathers[index].high;
return roundValue(weathers[index].high);
}

String OpenWeatherMapClient::getLow(int index)
{
return weathers[index].low;
return roundValue(weathers[index].low);
}

String OpenWeatherMapClient::getIcon(int index) {
Expand Down
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 "2.18"
#define VERSION "2.19"

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

0 comments on commit c0d3261

Please sign in to comment.