Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 311fb30

Browse files
authored
v2.0.2 to update PIO
### Releases v2.0.2 1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
1 parent 3f0ea0b commit 311fb30

File tree

9 files changed

+18
-42
lines changed

9 files changed

+18
-42
lines changed

examples/AsyncUDPClient/AsyncUDPClient.ino

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP)
77
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
88
Licensed under MIT license
9-
10-
Version: 2.0.1
11-
12-
Version Modified By Date Comments
13-
------- ----------- ---------- -----------
14-
2.0.0 K Hoang 10/07/2021 Initial coding for WT32_ETH01. Bump up version to v2.0.0 to sync with AsyncUDP v2.0.0
15-
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
169
*****************************************************************************************************************************/
1710
#include <Arduino.h>
1811

examples/AsyncUDPMulticastServer/AsyncUDPMulticastServer.ino

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP)
77
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
88
Licensed under MIT license
9-
10-
Version: 2.0.1
11-
12-
Version Modified By Date Comments
13-
------- ----------- ---------- -----------
14-
2.0.0 K Hoang 10/07/2021 Initial coding for WT32_ETH01. Bump up version to v2.0.0 to sync with AsyncUDP v2.0.0
15-
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
169
*****************************************************************************************************************************/
1710

1811
#include <Arduino.h>

examples/AsyncUDPServer/AsyncUDPServer.ino

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP)
77
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
88
Licensed under MIT license
9-
10-
Version: 2.0.1
11-
12-
Version Modified By Date Comments
13-
------- ----------- ---------- -----------
14-
2.0.0 K Hoang 10/07/2021 Initial coding for WT32_ETH01. Bump up version to v2.0.0 to sync with AsyncUDP v2.0.0
15-
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
169
*****************************************************************************************************************************/
1710
#include <Arduino.h>
1811

examples/AsyncUdpNTPClient/AsyncUdpNTPClient.ino

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ IPAddress myDNS(8, 8, 8, 8);
3636

3737
#include <time.h>
3838

39-
//IPAddress timeServerIP = IPAddress(168, 61, 215, 74); // time.windows.com
40-
IPAddress timeServerIP = IPAddress(132, 163, 96, 1); // time.nist.gov
39+
// 0.ca.pool.ntp.org
40+
IPAddress timeServerIP = IPAddress(208, 81, 1, 244);
41+
// time.nist.gov
42+
//IPAddress timeServerIP = IPAddress(132, 163, 96, 1);
4143

4244
#define NTP_REQUEST_PORT 123
4345

examples/AsyncUdpSendReceive/AsyncUdpSendReceive.ino

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@
66
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP)
77
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
88
Licensed under MIT license
9-
10-
Version: 2.0.1
11-
12-
Version Modified By Date Comments
13-
------- ----------- ---------- -----------
14-
2.0.0 K Hoang 10/07/2021 Initial coding for WT32_ETH01. Bump up version to v2.0.0 to sync with AsyncUDP v2.0.0
15-
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
169
*****************************************************************************************************************************/
1710

1811
#define ASYNC_UDP_WT32_ETH01_DEBUG_PORT Serial
@@ -36,8 +29,10 @@ IPAddress myDNS(8, 8, 8, 8);
3629

3730
#include <time.h>
3831

39-
//IPAddress timeServerIP = IPAddress(168, 61, 215, 74); // time.windows.com
40-
IPAddress timeServerIP = IPAddress(132, 163, 96, 1); // time.nist.gov
32+
// 0.ca.pool.ntp.org
33+
IPAddress timeServerIP = IPAddress(208, 81, 1, 244);
34+
// time.nist.gov
35+
//IPAddress timeServerIP = IPAddress(132, 163, 96, 1);
4136

4237
#define NTP_REQUEST_PORT 123
4338

platformio/platformio.ini

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,11 @@ upload_speed = 921600
2525
;monitor_speed = 9600
2626
;monitor_port = COM11
2727

28-
; Checks for the compatibility with frameworks and dev/platforms
29-
lib_compat_mode = strict
30-
3128
lib_deps =
3229
; PlatformIO 4.x
33-
; WebServer_WT32_ETH01@~1.2.0
30+
; WebServer_WT32_ETH01@~1.2.1
3431
; PlatformIO 5.x
35-
khoih.prog/WebServer_WT32_ETH01@~1.2.0
32+
khoih-prog/WebServer_WT32_ETH01@~1.2.1
3633

3734
build_flags =
3835
; set your debug output (default=Serial)

src/AsyncUDP_WT32_ETH01.h

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,21 @@
77
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
88
Licensed under MIT license
99
10-
Version: 2.0.1
10+
Version: 2.0.2
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
1414
2.0.0 K Hoang 10/07/2021 Initial coding for WT32_ETH01. Bump up version to v2.0.0 to sync with AsyncUDP v2.0.0
15-
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
15+
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
16+
2.0.2 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
1617
*****************************************************************************************************************************/
1718

1819
#pragma once
1920

2021
#ifndef ASYNC_UDP_WT32_ETH01_H
2122
#define ASYNC_UDP_WT32_ETH01_H
2223

23-
#define ASYNC_UDP_WT32_ETH01_VERSION "AsyncUdp_WT32_ETH01 v2.0.1"
24+
#define ASYNC_UDP_WT32_ETH01_VERSION "AsyncUdp_WT32_ETH01 v2.0.2"
2425

2526
#include "IPAddress.h"
2627
#include "IPv6Address.h"

src/AsyncUDP_WT32_ETH01_Debug.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
88
Licensed under MIT license
99
10-
Version: 2.0.1
10+
Version: 2.0.2
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
1414
2.0.0 K Hoang 10/07/2021 Initial coding for WT32_ETH01. Bump up version to v2.0.0 to sync with AsyncUDP v2.0.0
1515
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
16+
2.0.2 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
1617
*****************************************************************************************************************************/
1718

1819
#pragma once

src/AsyncUDP_WT32_ETH01_Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,13 @@
77
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
88
Licensed under MIT license
99
10-
Version: 2.0.1
10+
Version: 2.0.2
1111
1212
Version Modified By Date Comments
1313
------- ----------- ---------- -----------
1414
2.0.0 K Hoang 10/07/2021 Initial coding for WT32_ETH01. Bump up version to v2.0.0 to sync with AsyncUDP v2.0.0
1515
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
16+
2.0.2 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
1617
*****************************************************************************************************************************/
1718

1819
#pragma once

0 commit comments

Comments
 (0)