From 9b8bc12bf2a088e3efd1bbd1ccfe067ea52258cf Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Sun, 11 Dec 2022 00:16:45 -0500 Subject: [PATCH] v1.0.0 for `ESP32 + LwIP W5500` #### Releases v1.0.0 1. Initial coding to port [ESP_WiFiManager](https://github.com/khoih-prog/ESP_WiFiManager) to ESP32 boards using `LwIP W5500 Ethernet`. 2. Use `allman astyle` --- README.md | 2 +- library.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 74ec1f9..4ac2563 100644 --- a/README.md +++ b/README.md @@ -1581,7 +1581,7 @@ void loop() Serial.println(F("\nConfiguration portal requested.")); digitalWrite(LED_BUILTIN, LED_ON); // turn the LED on by making the voltage LOW to tell us we are in configuration mode. - //Local intialization. Once its business is done, there is no need to keep it around + //Local initialization. Once its business is done, there is no need to keep it around // Use this to default DHCP hostname to ESP32-XXXXXX //ESP32_W5500_Manager ESP32_W5500_manager; // Use this to personalize DHCP hostname (RFC952 conformed) diff --git a/library.json b/library.json index 7796e38..299d095 100644 --- a/library.json +++ b/library.json @@ -33,12 +33,12 @@ "owner": "khoih-prog", "name": "ESP_DoubleResetDetector", "version": ">=1.3.2", - "platforms": ["espressif8266", "espressif32"] + "platforms": ["espressif32"] } ], "license": "MIT", "frameworks": "*", - "platforms": ["espressif8266", "espressif32"], + "platforms": ["espressif32"], "examples": "examples/*/*/*.ino", "headers": ["ESP32_W5500_Manager.h", "ESP32_W5500_Manager.hpp"] }