#which board, which version of

1 messages · Page 1 of 1 (latest)

half kayak
#

yeah one sec

#

sorry, using the most recent 8.x on rpi pico w

#

8.2.9

#

I know they are 5v based on opening the control box and seeing the silkscreens on the pads

uneven latch
#

do you have this working with regular WS2812 strips (NeoPixels?) Do you have any of our strips?

half kayak
#

I can find a strand of generic ones real quick

#

@uneven latch it does not seem to work on a small strand of ws2812b

>>> import neopixel, board
>>> pixels = neopixel.NeoPixel(board.GP15, 20, brightness=0.3)
>>> pixels.fill((255, 255, 255))
>>> pixels.show()

nothing illuminated, and I've confirmed the voltage is correct between the pads on the led strip

uneven latch
#

GP15 is special. Try a different pin.

half kayak
#

I tried 14 before that

#

how is 15 special? It looks normal on the pinout

#

just tried with 13 as well, no light

#

fwiw I also just pulled this board out of the packaging and flashed it

#

actually wait I have this strip backwards let me flip it lol

#

that works

#

hmm that's a shame, these were pretty stock lights otherwise

uneven latch
#

The reddit thread says that the Govee strips may have special controllers at the top of each curtain strand

half kayak
#

yeah there's a screenshot in the reddit thread but I thought they just handled passing the LED index

#

I assumed that'd be transparent

#

I can get my own of those strands form aliexpress thankfully though

uneven latch
#

I'm not sure that is true. We have no experience with these

#

you could try one of the sub-strands, but that involves more cutting

half kayak
#

yeah I'm sure that would work, but at that rate I might as well get my own and just run parallel strands

uneven latch
#

note that you don't need to call pixels.show() unless you set auto_write=False when you create the NeoPixel object.

half kayak
#

is there a limit to the neopixel package on how many leds it can control on a single strand? Or how many instances it can have?

#

it didn't write when I flipped it until I called pixels.show() again though

uneven latch
#

there are no limits to the number of instances.

half kayak
#

great

uneven latch
#

how are you powering the strips? 5V from a separate supply?

half kayak
#

yep

uneven latch
#

and you have tied the grounds together from the board and the separate supply?

half kayak
#

yes

#

I think the curtain is just a bust, just a $120 power supply now 🫠

uneven latch
#

I have no extra advice about the Govee strips. How many strands do you want?

half kayak
#

I was going to make a matrix of ~38x26 that could be drawn on with a custom web app

#

I'll probably get closer spaced ones like this too

#

the govee seem to be 5cm spacing, 1.5cm spacing will look a lot better for writing stuff

uneven latch
half kayak
#

oh that's nice!

uneven latch
half kayak
#

I need to make one that's like 1m x 1.2m

uneven latch
#

ok, that's a lot bigger than our NeoPixel matrices or our non-NeoPixel RGB LED matrices

half kayak
#

yep lol, it's going behind streamers on twitch

uneven latch
#

got it, good luck, sorry about the Govee. There may be software for it, but I have no idea. The supplied software is not helpful, hunh?

half kayak
#

I tried using their api, but the stuff to send previews of writing is all bluetooth with the app. The only thing with the api is setting scenes and I need to be able to draw programmatically

#

I appreciate the swift help though!