How do I add a second device? For example, I might want to connect the second led strip to GPIO 21 and 19. Also, does it matter to which pins I connect an SPI led strip to?
Well that depends. The spi_led_strip component (and your lights) do not have a CS line and do not support specifying a SPI bus. The only way to add 2 strips is to connect one to the end of the other effectively creating a single strip.
If you know how to drive the led strips directly the you can create separate SPI buses and address them individually using lambda, see the example in the SPI bus component:
Thank you for your reply. That is unfortunate. To clarify: My plan is to have 2 different spi led strips and 2 weight sensors connected to 1 esp. All of this is under my bed.
Originally, I had 1 esp for the weight sensors, and 1 for both spi leds (running WLED). I was hoping I could avoid using 2 different esps. In WLED you can connect 2 SPI strips to 1 esp.
So my only option is to combine both spi strips into 1, or use 2 esps?