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

Commit 9b45132

Browse files
authored
v1.5.1 fix v1.5.0 issues
### Releases v1.5.1 1. Fix missing author in `library.properties` 2. Fix not updated library's code
1 parent cf06bda commit 9b45132

7 files changed

+414
-181
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ This is the terminal output when running [HTTPGET](examples/HTTPGET) example on
784784

785785
```cpp
786786
Start HTTPGET on RASPBERRY_PI_PICO
787-
ESP_AT_Lib v1.5.0
787+
ESP_AT_Lib v1.5.1
788788
FW Version:AT+GMR
789789
AT version:1.7.4.0(May 11 2020 19:13:04)
790790
SDK version:3.0.4(9532ceb)
@@ -847,7 +847,7 @@ This is the terminal output when running [HTTPGET](examples/HTTPGET) example on
847847
848848
```cpp
849849
Start HTTPGET on MBED RASPBERRY_PI_PICO
850-
ESP_AT_Lib v1.5.0
850+
ESP_AT_Lib v1.5.1
851851
FW Version:AT version:1.7.4.0(May 11 2020 19:13:04)
852852
SDK version:3.0.4(9532ceb)
853853
compile time:May 27 2020 10:12:17

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
## Table of Contents
1818

1919
* [Changelog](#changelog)
20+
* [Releases v1.5.1](#releases-v151)
2021
* [Releases v1.5.0](#releases-v150)
2122
* [Releases v1.4.1](#releases-v141)
2223
* [Releases v1.4.0](#releases-v140)
@@ -30,6 +31,11 @@
3031

3132
### Changelog
3233

34+
### Releases v1.5.1
35+
36+
1. Fix missing author in `library.properties`
37+
2. Fix not updated library's code
38+
3339
### Releases v1.5.0
3440

3541
1. Add support to WizNet `WizFi360`, such as `WIZNET_WIZFI360_EVB_PICO` using `arduino-pico` core

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ESP_AT_Lib",
3-
"version": "1.5.0",
3+
"version": "1.5.1",
44
"keywords": "wifi, WebServer, AT-command, wifi-shield, ESP8266, ESP32, Teensy, AVR, SAM DUE, SAMD21, SAMD51, STM32, nRF52, ESP8266-AT, ESP32-AT, WizFi360, rpi-pico, rp2040, raspberry-pi-pico, nano-rp2040-connect, mbed",
55
"description": "Simple WizFi360/ESP8266/ESP32-AT-command wrapper library for AVR, Teensy, SAM DUE, SAMD21, SAMD51, STM32, nRF52, SIPEED_MAIX_DUINO and RP2040-based (Nano_RP2040_Connect, RASPBERRY_PI_PICO, etc.) boards using WizFi360/ESP8266/ESP32 AT-command shields",
66
"authors":

library.properties

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name=ESP_AT_Lib
2-
version=1.5.0
3-
maintainer=Khoi Hoang <[email protected]>
2+
version=1.5.1
3+
author=Khoi Hoang <[email protected]>
44
license=MIT
55
maintainer=Khoi Hoang <[email protected]>
6-
sentence=An ESP8266/ESP32-AT library for Arduino providing an easy-to-use way to control WizFi360/ESP8266-AT/ESP32-AT WiFi shields using AT-commands. For AVR, Teensy, SAM DUE, SAMD21, SAMD51, STM32, nRF52, SIPEED_MAIX_DUINO and RP2040-based (Nano_RP2040_Connect, RASPBERRY_PI_PICO, etc.) boards using WizFi360/ESP8266/ESP32 AT-command shields.
6+
sentence=WizFi360/ESP8266/ESP32-AT library for Arduino providing an easy-to-use way to control WizFi360/ESP8266-AT/ESP32-AT WiFi shields using AT-commands. For AVR, Teensy, SAM DUE, SAMD21, SAMD51, STM32, nRF52, SIPEED_MAIX_DUINO and RP2040-based (Nano_RP2040_Connect, RASPBERRY_PI_PICO, etc.) boards using WizFi360/ESP8266/ESP32 AT-command shields.
77
paragraph=The library supports HTTP GET and POST requests, provides argument parsing, handles one client at a time.
88
category=Communication
99
url=https://github.com/khoih-prog/ESP_AT_Lib

src/ESP_AT_Debug.h

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
/****************************************************************************************************************************
22
ESP_AT_Debug.h - Dead simple ESP8266/ESP32-AT-command wrapper
3-
For ESP8266/ESP32-AT-command running shields
3+
For WizFi360/ESP8266/ESP32-AT-command running shields
44
5-
ESP_AT_Lib is a wrapper library for the ESP8266/ESP32 AT-command shields
5+
ESP_AT_Lib is a wrapper library for the WizFi360/ESP8266/ESP32 AT-command shields
66
77
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/ESP_AT_Lib
99
Licensed under MIT license
10-
Version: 1.4.1
10+
11+
Version: 1.5.1
1112
1213
Version Modified By Date Comments
1314
------- ----------- ---------- -----------
@@ -16,7 +17,9 @@
1617
1.2.0 K Hoang 17/05/2021 Add support to RP2040-based boards using Arduino-mbed RP2040 core. Fix compiler warnings
1718
1.3.0 K Hoang 29/05/2021 Add support to RP2040-based Nano_RP2040_Connect using Arduino-mbed RP2040 core
1819
1.4.0 K Hoang 13/08/2021 Add support to Adafruit nRF52 core v0.22.0+
19-
1.4.1 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
20+
1.4.1 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
21+
1.5.0 K Hoang 19/01/2023 Add support to WizNet WizFi360 such as WIZNET_WIZFI360_EVB_PICO
22+
1.5.1 K Hoang 19/01/2023 Fix mistakes
2023
*****************************************************************************************************************************/
2124

2225
#ifndef __ESP_AT_DEBUG_H__
@@ -28,12 +31,11 @@
2831
defined(NRF52840_FEATHER_SENSE) || defined(NRF52840_ITSYBITSY) || defined(NRF52840_CIRCUITPLAY) || \
2932
defined(NRF52840_CLUE) || defined(NRF52840_METRO) || defined(NRF52840_PCA10056) || defined(PARTICLE_XENON) || \
3033
defined(MDBT50Q_RX) || defined(NINA_B302_ublox) || defined(NINA_B112_ublox) )
31-
#include <Adafruit_TinyUSB.h>
34+
#include <Adafruit_TinyUSB.h>
3235
#endif
3336

3437
#ifdef ESP_AT_LIB_DEBUG_OUTPUT
3538
#define AT_LIB_DEBUG_OUTPUT ESP_AT_LIB_DEBUG_OUTPUT
36-
#warning Use Serial in ESP_AT_Lib_Debug.h
3739
#else
3840
#define AT_LIB_DEBUG_OUTPUT Serial
3941
#endif

0 commit comments

Comments
 (0)