I get two readings and everything works fine.
Now I’d like to use WT32-ETH01 instead of ESP8266, so I can use LAN.
The problem is that I don’t know which pins I should use to set up SPI.
Thank you for the update, I’ll check it when I’m home.
The plan is to have a display and read values from 4 sensors (using) four separate max31865 boards.
I searched for an alternative board, but even Olimex doesn’t have many pins
SPI is a bus, so you only need CS pin for every additional Max31865.
I guess RX2, TX2 and RS485 enable pins are ok as output pins. No idea what CFG pin supposed to serve…
I power off the board and now when I power it I get this error:
SPI_FAST_FLASH_BOOT
I’m not sure what could be the cause.
When I unplug MAX31865 board from WT32 (I only unplugged power) the board correctly connects to ethernet, but I get no readings
When compiling firmware I see this in the logs:
WARNING GPIO15 is a strapping PIN and should only be used for I/O with care.
Attaching external pullup/down resistors to strapping pins can cause unexpected failures.
See https://esphome.io/guides/faq.html#why-am-i-getting-a-warning-about-strapping-pins
WARNING GPIO12 is a strapping PIN and should only be used for I/O with care.
Attaching external pullup/down resistors to strapping pins can cause unexpected failures.
See https://esphome.io/guides/faq.html#why-am-i-getting-a-warning-about-strapping-pins
any hints on what might be the problem? and how to fix it.
Like Esphome tells you, strapping pins. You need to try different pin combinations. If your Max31865 have pullups on those pins connected to GPIO12 and 15, the boot fails.
Instead of Gpio12, use Gpio17 for example.
Did you make changes to your previous “working” setup?