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

Commit f20021c

Browse files
authored
v1.0.0 forLwIP W6100 Ethernet
#### Releases v1.0.0 1. Initial coding to port [ESPAsync_WiFiManager](https://github.com/khoih-prog/ESPAsync_WiFiManager) to ESP32 boards using `LwIP W6100 Ethernet`. 2. Use `allman astyle`
1 parent 405427f commit f20021c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+10882
-0
lines changed

.codespellrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# See: https://github.com/codespell-project/codespell#using-a-config-file
2+
[codespell]
3+
# In the event of a false positive, add the problematic word, in all lowercase, to a comma-separated list here:
4+
ignore-words-list = ,
5+
check-filenames =
6+
check-hidden =
7+
skip = ./.git,./src,./examples,./Packages_Patches,./LibraryPatches

CONTRIBUTING.md

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
## Contributing to AsyncESP32_W6100_Manager
2+
3+
### Reporting Bugs
4+
5+
Please report bugs in AsyncESP32_W6100_Manager if you find them.
6+
7+
However, before reporting a bug please check through the following:
8+
9+
* [Existing Open Issues](https://github.com/khoih-prog/AsyncESP32_W6100_Manager/issues) - someone might have already encountered this.
10+
11+
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/AsyncESP32_W6100_Manager/issues/new).
12+
13+
---
14+
15+
### How to submit a bug report
16+
17+
Please ensure to specify the following:
18+
19+
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
20+
* Board type (e.g. ESP32_DEV)
21+
* Board Core Version (e.g. ESP32 core v2.0.6)
22+
* Contextual information (e.g. what you were trying to achieve)
23+
* Simplest possible steps to reproduce
24+
* Anything that might be relevant in your opinion, such as:
25+
* Operating system (Windows, Ubuntu, etc.) and the output of `uname -a`
26+
* Network configuration
27+
28+
Please be educated, civilized and constructive as you've always been. Disrespective posts against [GitHub Code of Conduct](https://docs.github.com/en/site-policy/github-terms/github-event-code-of-conduct) will be ignored and deleted.
29+
30+
---
31+
32+
### Example
33+
34+
```
35+
Arduino IDE version: 1.8.19
36+
ESP32_DEV board
37+
ESP32 core v2.0.6
38+
OS: Ubuntu 20.04 LTS
39+
Linux xy-Inspiron-3593 5.15.0-58-generic #64~20.04.1-Ubuntu SMP Fri Jan 6 16:42:31 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
40+
41+
Context:
42+
I encountered a crash while using this library
43+
Steps to reproduce:
44+
1. ...
45+
2. ...
46+
3. ...
47+
4. ...
48+
```
49+
---
50+
51+
### Additional context
52+
53+
Add any other context about the problem here.
54+
55+
---
56+
57+
### Sending Feature Requests
58+
59+
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful.
60+
61+
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/AsyncESP32_W6100_Manager/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
62+
63+
---
64+
65+
### Sending Pull Requests
66+
67+
Pull Requests with changes and fixes are also welcome!
68+
69+
Please use the `astyle` to reformat the updated library code as follows (demo for Ubuntu Linux)
70+
71+
1. Change directory to the library GitHub
72+
73+
```
74+
xy@xy-Inspiron-3593:~$ cd Arduino/xy/AsyncESP32_W6100_Manager_GitHub/
75+
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncESP32_W6100_Manager_GitHub$
76+
```
77+
78+
2. Issue astyle command
79+
80+
```
81+
xy@xy-Inspiron-3593:~/Arduino/xy/AsyncESP32_W6100_Manager_GitHub$ bash utils/restyle.sh
82+
```
83+

Images/Configuration_AIO_MQTT.png

35.5 KB
Loading

Images/Configuration_Standard.png

16.8 KB
Loading

Images/Info.png

61.4 KB
Loading

Images/Main.png

12.9 KB
Loading

Images/Saved.png

2.42 KB
Loading

Images/W6100.png

116 KB
Loading

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Khoi Hoang
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

changelog.md

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# AsyncWebServer_ESP32_W6100 Library
2+
3+
[![arduino-library-badge](https://www.ardu-badge.com/badge/AsyncWebServer_ESP32_W6100.svg?)](https://www.ardu-badge.com/AsyncWebServer_ESP32_W6100)
4+
[![GitHub release](https://img.shields.io/github/release/khoih-prog/AsyncWebServer_ESP32_W6100.svg)](https://github.com/khoih-prog/AsyncWebServer_ESP32_W6100/releases)
5+
[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/khoih-prog/AsyncWebServer_ESP32_W6100/blob/main/LICENSE)
6+
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
7+
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/AsyncWebServer_ESP32_W6100.svg)](http://github.com/khoih-prog/AsyncWebServer_ESP32_W6100/issues)
8+
9+
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Donate to my libraries using BuyMeACoffee" style="height: 50px !important;width: 181px !important;" ></a>
10+
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00" style="height: 20px !important;width: 200px !important;" ></a>
11+
12+
13+
---
14+
---
15+
16+
## Table of contents
17+
18+
* [Changelog](#changelog)
19+
* [Releases v1.0.0](#releases-v100)
20+
21+
22+
23+
---
24+
---
25+
26+
## Changelog
27+
28+
#### Releases v1.0.0
29+
30+
1. Initial coding to port [ESPAsync_WiFiManager](https://github.com/khoih-prog/ESPAsync_WiFiManager) to ESP32 boards using `LwIP W6100 Ethernet`.
31+
2. Use `allman astyle`
32+
33+

0 commit comments

Comments
 (0)