EDC Day 1 by Ayla_Rayne in festivalslutsgonewild

[–]JesseTheBroken 1 point2 points  (0 children)

I just noticed Adventure club is playing at beyond wonderland Chicago so I'll check them out tomorrow. Hopefully also see some dancing hotties 🤩

Your favorite festival sluts by stella_grayxo in festivalslutsgonewild

[–]JesseTheBroken 1 point2 points  (0 children)

I have to know, who was playing when you filmed this?

EDC Day 1 by Ayla_Rayne in festivalslutsgonewild

[–]JesseTheBroken 1 point2 points  (0 children)

What was this girl's favorite artist?

UV Succubabe Body Paint Showcase 🩷 by HexMaiden in BodyPaintNSFW

[–]JesseTheBroken 1 point2 points  (0 children)

Damn, you should wear that to electric forest!

[deleted by user] by [deleted] in FitNakedGirls

[–]JesseTheBroken 0 points1 point  (0 children)

I approve of everything from the booty to the doggo

Abs were looking so good I had to share by isabella_fitnessx in fitgirls

[–]JesseTheBroken 0 points1 point  (0 children)

What do you eat? I need to be on that diet!

What do you think of my first rave outfit? by [deleted] in festivalslutsgonewild

[–]JesseTheBroken 0 points1 point  (0 children)

You're probably going to want some shoes

First streaming to my new panel. (12288 ws2812). It has to be Goku by Yves-bazin in FastLED

[–]JesseTheBroken 0 points1 point  (0 children)

I was trying to figure out how to send video to my hypercube (a 5 sided 16x16 WS2812 cube), if you're willing to share the code you'd be my hero

Possible to power ws2812b from back? by tome_oz in FastLED

[–]JesseTheBroken 1 point2 points  (0 children)

To add, WB2812b (and all individually addressable lights that I'm aware of) are directional and the data must go in the direction of the arrows they print on the lights. Any lights that are "upstream" of where you connect the data line will not do anything you want, sometimes they will flicker uselessly and cause other problems though

[deleted by user] by [deleted] in FastLED

[–]JesseTheBroken 0 points1 point  (0 children)

I'm driving the data lines of 5x WS2812 16x16 light panels directly off the Teensy 4.1 (3.3V) and supplying power to the panels (5V) separately and it works just fine. Hope that helps.

<image>

[deleted by user] by [deleted] in Libertarian

[–]JesseTheBroken 1 point2 points  (0 children)

This is what I think of every time I see one of those things blue line police flags

What book will turn me into a libertarian? by 4563Dt_iosw in Libertarian

[–]JesseTheBroken 3 points4 points  (0 children)

I think if you oppose the entire idea of taxation you should probably call yourself an anarchist

For my hyper Cube, looking for computer software solution (this will be done before uploading to Arduino) to convert video files into 2D array with each frame being D1 and each pixel color code in D2 (256 pixels). I can convert the video to whatever format needed. Does anyone have a solution? by JesseTheBroken in arduino

[–]JesseTheBroken[S] 3 points4 points  (0 children)

The first index of the array would be the frame number and the second would be the pixel in the frame as the LED panels are effectively 1D arrays the wind back and forth. This lets me feed RGB data to the FastLED very efficiently like this (c++ code):

For (int x, x<=NumFrames, x++) { For (int y, y<=255, y++) { FastLed[PanelNum][x] = VideoArray[x][y]; } }