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

Commit e71d847

Browse files
authored
v1.0.0 for LwIP W6100 Ethernet
#### Releases v1.0.0 1. Initial coding to port `synchronous` [ESP_WiFiManager](https://github.com/khoih-prog/ESP_WiFiManager) to `ESP32_S2/S3/C3` boards using `LwIP W6100 Ethernet`. 2. Use `allman astyle`
1 parent 139f9ed commit e71d847

Some content is hidden

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

53 files changed

+12298
-0
lines changed

.codespellrc

Lines changed: 7 additions & 0 deletions
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

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
## Contributing to ESP32_SC_W6100_Manager
2+
3+
### Reporting Bugs
4+
5+
Please report bugs in ESP32_SC_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/ESP32_SC_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/ESP32_SC_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. ESP32S3_DEV, ESP32S2_DEV, ESP32C3_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+
29+
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.
30+
31+
---
32+
33+
### Example
34+
35+
```
36+
Arduino IDE version: 1.8.19
37+
ESP32S3_DEV board
38+
ESP32 core v2.0.6
39+
OS: Ubuntu 20.04 LTS
40+
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
41+
42+
Context:
43+
I encountered a crash while using this library
44+
Steps to reproduce:
45+
1. ...
46+
2. ...
47+
3. ...
48+
4. ...
49+
```
50+
---
51+
52+
### Additional context
53+
54+
Add any other context about the problem here.
55+
56+
---
57+
58+
### Sending Feature Requests
59+
60+
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful.
61+
62+
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/ESP32_SC_W6100_Manager/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
63+
64+
---
65+
66+
### Sending Pull Requests
67+
68+
Pull Requests with changes and fixes are also welcome!
69+
70+
Please use the `astyle` to reformat the updated library code as follows (demo for Ubuntu Linux)
71+
72+
1. Change directory to the library GitHub
73+
74+
```
75+
xy@xy-Inspiron-3593:~$ cd Arduino/xy/ESP32_SC_W6100_Manager_GitHub/
76+
xy@xy-Inspiron-3593:~/Arduino/xy/ESP32_SC_W6100_Manager_GitHub$
77+
```
78+
79+
2. Issue astyle command
80+
81+
```
82+
xy@xy-Inspiron-3593:~/Arduino/xy/ESP32_SC_W6100_Manager_GitHub$ bash utils/restyle.sh
83+
```
84+

Images/Configuration_AIO_MQTT.png

35.5 KB
Loading

Images/Configuration_Standard.png

16.8 KB
Loading

Images/ESP32S2_DEV.png

352 KB
Loading

Images/ESP32S3_DEV.png

294 KB
Loading

Images/ESP32_C3_DevKitC_02.png

205 KB
Loading

Images/Info.png

60.3 KB
Loading

Images/Main.png

12.9 KB
Loading

Images/Saved.png

2.42 KB
Loading

0 commit comments

Comments
 (0)