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

Commit

Permalink
v2.0.2 to update PIO
Browse files Browse the repository at this point in the history
### Releases v2.0.2

1. Update `platform.ini` and `library.json` to use original `khoih-prog` instead of `khoih.prog` after PIO fix
  • Loading branch information
khoih-prog authored Oct 9, 2021
1 parent 3f0ea0b commit 311fb30
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 42 deletions.
7 changes: 0 additions & 7 deletions examples/AsyncUDPClient/AsyncUDPClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP)
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
Licensed under MIT license
Version: 2.0.1
Version Modified By Date Comments
------- ----------- ---------- -----------
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
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
*****************************************************************************************************************************/
#include <Arduino.h>

Expand Down
7 changes: 0 additions & 7 deletions examples/AsyncUDPMulticastServer/AsyncUDPMulticastServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP)
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
Licensed under MIT license
Version: 2.0.1
Version Modified By Date Comments
------- ----------- ---------- -----------
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
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
*****************************************************************************************************************************/

#include <Arduino.h>
Expand Down
7 changes: 0 additions & 7 deletions examples/AsyncUDPServer/AsyncUDPServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP)
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
Licensed under MIT license
Version: 2.0.1
Version Modified By Date Comments
------- ----------- ---------- -----------
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
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
*****************************************************************************************************************************/
#include <Arduino.h>

Expand Down
6 changes: 4 additions & 2 deletions examples/AsyncUdpNTPClient/AsyncUdpNTPClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,10 @@ IPAddress myDNS(8, 8, 8, 8);

#include <time.h>

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

#define NTP_REQUEST_PORT 123

Expand Down
13 changes: 4 additions & 9 deletions examples/AsyncUdpSendReceive/AsyncUdpSendReceive.ino
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,6 @@
Based on and modified from ESPAsyncUDP Library (https://github.com/me-no-dev/ESPAsyncUDP)
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
Licensed under MIT license
Version: 2.0.1
Version Modified By Date Comments
------- ----------- ---------- -----------
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
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
*****************************************************************************************************************************/

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

#include <time.h>

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

#define NTP_REQUEST_PORT 123

Expand Down
7 changes: 2 additions & 5 deletions platformio/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,11 @@ upload_speed = 921600
;monitor_speed = 9600
;monitor_port = COM11

; Checks for the compatibility with frameworks and dev/platforms
lib_compat_mode = strict

lib_deps =
; PlatformIO 4.x
; WebServer_WT32_ETH01@~1.2.0
; WebServer_WT32_ETH01@~1.2.1
; PlatformIO 5.x
khoih.prog/WebServer_WT32_ETH01@~1.2.0
khoih-prog/WebServer_WT32_ETH01@~1.2.1

build_flags =
; set your debug output (default=Serial)
Expand Down
7 changes: 4 additions & 3 deletions src/AsyncUDP_WT32_ETH01.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,21 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
Licensed under MIT license
Version: 2.0.1
Version: 2.0.2
Version Modified By Date Comments
------- ----------- ---------- -----------
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
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
2.0.2 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once

#ifndef ASYNC_UDP_WT32_ETH01_H
#define ASYNC_UDP_WT32_ETH01_H

#define ASYNC_UDP_WT32_ETH01_VERSION "AsyncUdp_WT32_ETH01 v2.0.1"
#define ASYNC_UDP_WT32_ETH01_VERSION "AsyncUdp_WT32_ETH01 v2.0.2"

#include "IPAddress.h"
#include "IPv6Address.h"
Expand Down
3 changes: 2 additions & 1 deletion src/AsyncUDP_WT32_ETH01_Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
Licensed under MIT license
Version: 2.0.1
Version: 2.0.2
Version Modified By Date Comments
------- ----------- ---------- -----------
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
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
2.0.2 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/AsyncUDP_WT32_ETH01_Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,13 @@
Built by Khoi Hoang https://github.com/khoih-prog/AsyncUDP_WT32_ETH01
Licensed under MIT license
Version: 2.0.1
Version: 2.0.2
Version Modified By Date Comments
------- ----------- ---------- -----------
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
2.0.1 K Hoang 12/07/2021 Update to use WebServer_WT32_ETH01 v1.2.0
2.0.2 K Hoang 09/10/2021 Update `platform.ini` and `library.json`
*****************************************************************************************************************************/

#pragma once
Expand Down

0 comments on commit 311fb30

Please sign in to comment.