You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/features/multi-strip.md
+8-4Lines changed: 8 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,14 +51,18 @@ There are a few tips and recomendations to keep in mind when designing your setu
51
51
#### Performance
52
52
53
53
In WLED-MM, classic ESP32 can calculate about *200k-300k LEDs* per second
54
-
- This means 1,000 LEDs at 250 frames per second, 2,000 LEDs at 120 frames per second, and 4,000 LEDs at 70 frames per second.
54
+
- This means 1,000 LEDs at 250 frames per second, 2,000 LEDs at 120 frames per second, or 4,000 LEDs at 70 frames per second.
55
55
- WLED-MM framerates can even be faster if effects don't redraw each LED in each frame.
56
56
- However these maximum values can only be achieved with HUB75, or when you distribute your LEDs over several output pins.
57
-
- 4 output pins seem to be the sweet spot.
57
+
- 4 output pins seem to be the sweet spot (see below).
58
58
- With many output pins the ESP32 will be very busy driving parallel outputs, so it can't calculate as many LEDs.
59
59
60
-
Keep in mind that limiting factor is often the speed of the ws2812b protocol. Each strip (=output pin) runs a 800kz bitwise protocol, and each pixel needs 24 bits (RGB color).
61
-
- You can calculate the max possible speed (per output pin) with this formula : ``800000 / 24 / strip_length_pixels `` = max frames per second. For RGB+White, replace "24" with "32".
60
+
Keep in mind that the limiting factor is usually the speed of the ws2812b protocol - each strip (=output pin) runs an 800kz serial protocol, and each pixel needs 24 bits (RGB color).
61
+
You can calculate the max possible speed - per output pin - with this formula :
62
+
63
+
``800000 / 24 / strip_length_in_pixels `` = max frames per second.
0 commit comments