Hacker News new | ask | show | jobs
by sircastor 1291 days ago
These are beautiful. I was actually looking at the RP2040 as a controller for my Christmas lights setup, but ran out of time and ended up going with another chip that I already knew would work.

I’m curious if there’s room on the pico (or just with an RP2040) for Ethernet to send E1.31 protocol messages to it, and have it drive LEDs.

2 comments

> I’m curious if there’s room on the pico (or just with an RP2040) for Ethernet to send E1.31 protocol messages to it, and have it drive LEDs.

There are several RP2040 boards available including the Pico W which include WiFi.

If you are looking for wired Ethernet your best bet is to add a WIZnet W5500 SPI Ethernet module. Besides connecting a module to an existing RP2040 based board WIZnet makes an evaluation board which combines a RP2040 and W5500 on a board. All the RP2040 pins are exposed. If you use the Arduino ecosystem the Ethernet library shipped with Arduino core for the RP2040 includes support for the W5500.

Thank you!

We are working on adding E1.31, using ethernet over USB (CDC NCM). We don't have it finished yet, but we hope it will just be a firmware update once it is. Dmxsun (https://github.com/OpenLightingProject/rp2040-dmxsun) works like this and is RP2040 based, so it's certainly possible.