No idea what the problem is, anyone having an idea? I need the ethernet support and the canbus because wifi is not available at the location I need to control something with canbus.
Hi, sorry for undigging this old treat.
Recently I faced same issue as when using ESP32-S3-POE-ETH board with W5500 ethernet interface.
When I’m trying to compile code with MCP2515 module, getting the same error as @skycryer.
My error is:
`spi` component is using interface 'SPI2_HOST'. To use W5500, you must change the `interface` on the `spi` component.
id: my_network
mosi_pin: 11
miso_pin: 12
clk_pin: 13
cs_pin: 14
reset_pin: 9
interrupt_pin: 10
clock_speed: 25000000
domain: .local
type: W5500
MCP2515 definition is exacly the same as @skycryer showed. W5500 definition in esphome doesn’t have spi interface configuration.
So I don’t know what else I can change.
Can anybody help me resovle this issue?
Thabnk you - after some digging I’ve found, what I was doing wrong.
When building my project I was using remote packges from github and when compiling esphome it just ognored local files I’ve prepared. When I switched to respect local files, everything is working as extected.
Sorry for the confusion and unnecessary digging up of an old topic.