Hi, i have wired up a set of Neon-like RGB LED Strip with Diffuser (NeoPixel/WS2812/SK6812 compatible) as per the various instructions i found to a Rpi4 (i also tried it on a PICO): checked that i have data going in at the female connector end, checked that i see 5v coming out at the other end, use a separate power supply to the pi and having shared GND. I have used the 4 pins that are shown as usable (board.d18, board.d21, board.d10 and board.d12 . in every case i see no lights, not a flicker or a flash. No errors reported from the basic code i am using to test with:
import board
import neopixel
pixels = neopixel.NeoPixel(board.D21, 30)
while True:
pixels.fill((255, 0, 0))
used raspi-config to enable i2c and spi
Are there any other settings i need to make to ensure that they will work ?
are there any other ideas as to what i can try to check out the PI / neopixels are ok ?
thanks in advance for any help