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

Commit

Permalink
v1.0.0 for ESP32 + LwIP W5500
Browse files Browse the repository at this point in the history
#### 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`
  • Loading branch information
khoih-prog committed Dec 11, 2022
1 parent f96bd9a commit 9b8bc12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions library.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
}

0 comments on commit 9b8bc12

Please sign in to comment.