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 LwIP W6100 Ethernet
Browse files Browse the repository at this point in the history
#### 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`
  • Loading branch information
khoih-prog authored Jan 15, 2023
1 parent 7d5714f commit 440e327
Showing 1 changed file with 39 additions and 20 deletions.
59 changes: 39 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1834,53 +1834,72 @@ You can change the `INT` pin to another one. Default is `GPIO4`
#define INT_GPIO 4
```

---

#### W6100

<p align="center">
<img src="https://github.com/khoih-prog/ESP32_SC_W6100_Manager/raw/main/Images/W6100.png">
</p>

---


#### ESP32S3_DEV

<p align="center">
<img src="https://github.com/khoih-prog/ESP32_SC_W6100_Manager/raw/main/Images/ESP32S3_DEV.png">
</p>


|W6100|<--->|ESP32_S3|
|:-:|:-:|:-:|
|MOSI|<--->|GPIO11|
|MISO|<--->|GPIO13|
|SCK|<--->|GPIO12|
|CS/SS|<--->|GPIO10|
|INT|<--->|GPIO4|
|RST|<--->|RST|
|GND|<--->|GND|
|3.3V|<--->|3.3V|

---

#### ESP32S2_DEV

<p align="center">
<img src="https://github.com/khoih-prog/ESP32_SC_W6100_Manager/raw/main/Images/ESP32S2_DEV.png">
</p>


#### ESP32C3_DEV

<p align="center">
<img src="https://github.com/khoih-prog/ESP32_SC_W6100_Manager/raw/main/Images/ESP32_C3_DevKitC_02.png">
</p>
|W6100|<--->|ESP32_S2|
|:-:|:-:|:-:|
|MOSI|<--->|GPIO35|
|MISO|<--->|GPIO37|
|SCK|<--->|GPIO36|
|CS/SS|<--->|GPIO34|
|INT|<--->|GPIO4|
|RST|<--->|RST|
|GND|<--->|GND|
|3.3V|<--->|3.3V|

---


#### W6100

`FULL_DUPLEX, 100Mbps`
#### ESP32C3_DEV

<p align="center">
<img src="https://github.com/khoih-prog/ESP32_SC_W6100_Manager/raw/main/Images/W6100.png">
</p>

<p align="center">
<img src="https://github.com/khoih-prog/ESP32_SC_W6100_Manager/raw/main/Images/W6100_small.png">
<img src="https://github.com/khoih-prog/ESP32_SC_W6100_Manager/raw/main/Images/ESP32_C3_DevKitC_02.png">
</p>



|W6100|<--->|ESP32_S3|
|W6100|<--->|ESP32_C3|
|:-:|:-:|:-:|
|MOSI|<--->|GPIO11|
|MISO|<--->|GPIO13|
|SCK|<--->|GPIO12|
|SS|<--->|GPIO10|
|INT|<--->|GPIO4|
|MOSI|<--->|GPIO6|
|MISO|<--->|GPIO5|
|SCK|<--->|GPIO4|
|CS/SS|<--->|GPIO7|
|INT|<--->|GPIO10|
|RST|<--->|RST|
|GND|<--->|GND|
|3.3V|<--->|3.3V|
Expand Down

0 comments on commit 440e327

Please sign in to comment.