[ethernet] Add W5100 support for RP2040 (#15131)

This commit is contained in:
J. Nick Koston
2026-03-24 14:03:30 -10:00
committed by GitHub
parent 9fb5b6aa15
commit b6aec4fa25
6 changed files with 62 additions and 14 deletions
@@ -0,0 +1,18 @@
ethernet:
type: W5100
clk_pin: 18
mosi_pin: 19
miso_pin: 16
cs_pin: 17
interrupt_pin: 21
reset_pin: 20
manual_ip:
static_ip: 192.168.178.56
gateway: 192.168.178.1
subnet: 255.255.255.0
domain: .local
mac_address: "02:AA:BB:CC:DD:01"
on_connect:
- logger.log: "Ethernet connected!"
on_disconnect:
- logger.log: "Ethernet disconnected!"
@@ -0,0 +1 @@
<<: !include common-w5100-rp2040.yaml