File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ a wired interface.
13
13
Supported Wired Ethernet Modules
14
14
--------------------------------
15
15
16
- * Wiznet W5100
16
+ * Wiznet W5100(s)
17
17
18
18
* Wiznet W5500
19
19
@@ -111,6 +111,26 @@ For example, to set the W5500 to use a 30MHZ clock:
111
111
...
112
112
}
113
113
114
+ Using the WIZnet W5100S-EVB-Pico
115
+ --------------------------------
116
+
117
+ You can use the onboard Ethernet chip with these drivers by utilizing the following options:
118
+
119
+ .. code :: cpp
120
+
121
+ #include <W5100lwIP.h>
122
+ Wiznet5100lwIP eth(17); // Note chip select is **17**
123
+
124
+ void setup() {
125
+ // Set SPI to the onboard Wiznet chip
126
+ SPI.setRX(16);
127
+ SPI.setCS(17);
128
+ SPI.setSCK(18);
129
+ SPI.setTX(19);
130
+ ...
131
+ eth.begin();
132
+ ...
133
+ }
114
134
115
135
Example Code
116
136
------------
You can’t perform that action at this time.
0 commit comments