Skip to content

Commit 1593dd3

Browse files
committed
Updateing Readme & change CET to Europe/Amsterdam
1 parent 05355cd commit 1593dd3

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

OTGW-firmware.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ String settingMQTTuser = "";
8181
String settingMQTTpasswd = "";
8282
String settingMQTTtopTopic = "OTGW";
8383
bool settingNTPenable = true;
84-
String settingNTPtimezone = "CET"; //Default
84+
String settingNTPtimezone = "Europe/Amsterdam"; //Default
8585
bool settingLEDblink = true;
8686

8787

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Looking for the documentation, go here (work in progress): <br> https://github.
4646

4747
| Version | Release notes |
4848
|-|-|
49-
| 0.7.6 | PIC firmware integration done. <br> NTP configurable <br> Web UI only values that have been updated <br> Update to REST API to include epoch of last update to message|
49+
| 0.7.6 | PIC firmware integration done. <br> New setting: NTP configurable <br> New setting: heartbeat led on/off <br> Update to REST API to include epoch of last update to message|
5050
| 0.7.5 | Complete set of status bits in UI and Central Heating 2 information |
5151
| 0.7.4 | Integration of the otgw-pic firmware upgrade code - upgrade to pic firmware version 5.0 (by Schelte Bron) |
5252
| 0.7.3 | Adding MQTT disable/enable option<br>Adding MQTT long password (max. 100 chars)<br>Adding executeCommand API (verify and return response for commands)<br>Adding RESTAPI /api/v1/otgw/cmdrsp/{command} that returns {response from command}<br>Added uptime and otgw fwversion in devinfo UI |

networkStuff.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,15 +163,15 @@ void startNTP(){
163163
DebugTf("GeoIP located your timezone to be: %s\r\n", CSTR(settingNTPtimezone));
164164
} else {
165165
DebugTln(errorString());
166-
settingNTPtimezone = "CET";
166+
settingNTPtimezone = "Europe/Amsterdam";
167167
}
168168
} else {
169169
if (myTZ.setLocation(settingNTPtimezone)){
170170
DebugTf("Timezone set to (using default): %s\r\n", CSTR(settingNTPtimezone));
171171
settingNTPtimezone = myTZ.getTimezoneName();
172172
} else {
173173
DebugTln(errorString());
174-
settingNTPtimezone = "CET";
174+
settingNTPtimezone = "Europe/Amsterdam";
175175
}
176176
}
177177
// }

settingStuff.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void readSettings(bool show)
8585
if (settingMQTTtopTopic.length()==0) settingMQTTtopTopic = _HOSTNAME;
8686
settingNTPenable = doc["NTPenable"];
8787
settingNTPtimezone = doc["NTPtimezone"].as<String>();
88-
if (settingNTPtimezone=="null") settingNTPtimezone = "CET"; //default to amsterdam timezone
88+
if (settingNTPtimezone=="null") settingNTPtimezone = "Europe/Amsterdam"; //default to amsterdam timezone
8989
settingLEDblink = doc["LEDblink"]|settingLEDblink;
9090

9191
// Close the file (Curiously, File's destructor doesn't close the file)

version.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
#define _VERSION_MAJOR 0
33
#define _VERSION_MINOR 7
44
#define _VERSION_PATCH 6
5-
#define _VERSION_BUILD 687
5+
#define _VERSION_BUILD 688
66
//#define _VERSION_PRERELEASE beta //uncomment to define prerelease labels: alpha - beta - rc
77
#define _VERSION_DATE "22-02-2021"
8-
#define _VERSION_TIME "08:04:45"
8+
#define _VERSION_TIME "08:10:13"
99
#define _SEMVER_CORE "0.7.6"
10-
#define _SEMVER_BUILD "0.7.6+687"
11-
#define _SEMVER_FULL "0.7.6+687"
10+
#define _SEMVER_BUILD "0.7.6+688"
11+
#define _SEMVER_FULL "0.7.6+688"
1212
#define _SEMVER_NOBUILD "0.7.6 (22-02-2021)"
13-
#define _VERSION "0.7.6+687 (22-02-2021)"
13+
#define _VERSION "0.7.6+688 (22-02-2021)"
1414
//The version information is created automatically, more information here: https://github.com/rvdbreemen/autoinc-semver

0 commit comments

Comments
 (0)