Introduction: W5100S-EVB-Pico With the Arduino IDE

The W5100S-EVB-Pico has the same role as the Raspberry Pi Pico platform and includes W5100S, so the Ethernet function is basically included.

Step 1: Arduino-Pico of Mr. Philhower

It is easy to use an Arduino IDE with W5100S-EVB-Pico.

The W5100S-EVB-Pico is a microcontroller evaluation board based on the Raspberry Pi RP2040 microcontroller chip and a full hardwired TCP/IP controller W5100S chip.

I used Arduino-Pico of Mr. Philhower. It's useful for me, who doesn't know well python.

Step 2: Additional Boards Manager URLs

I added the URL in the "Additional Boards Manager URLs" field and searched pico in Board Manager to add.

https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json



Step 3: Choose the Board As a Raspberry Pi Pico

Then, I choose the Board as a Raspberry Pi Pico.

Step 4: Blink

I can run a Blink without any problem.

Step 5: WIZnet Arduino Ethernet

However, I should add a WIZnet Ethernet Library. Because the official Ethernet Library is not supporting W5100S yet. It is pending now.

But it is easy to use WIZnet Ethernet Library too.

Go to WIZnet Arduino Ethernet git repository, download and extract to user library directory as a name Ethernet.

Step 6: NCS

And one more thing, I should add a init function(to set nCS) to use W5100S-EVB-Pico's ethernet.

The GPIO17 is an nCS pin of W5100S.

Ethernet.init(17); // W5100S-EVB-Pico


Step 7: Run

Then, the example worked well.

Step 8: Finally

So, there are two things to need to use W5100S-EVB-Pico.

1. Download WIZnet Arduino Ethernet to user library directory.
2. Set nCS.

It's all.


Added 20220412

Here is another arduino-pico that included an ethernet library by WIZnet modified.


thank you for reading this.