rstephan / ArtnetWifi

Arduino library for Art-Net (artnet) over WiFi, send and receive DMX data. Runs on ESP8266, ESP32, Pi Pico W, WiFi101 and WiFiNINA devices.
Other
354 stars 60 forks source link

Max WS2811 #6

Closed ghost closed 7 years ago

ghost commented 7 years ago

What is the number maximum of WS2811 in ESP8266 with artnet ?

thanks :)

rstephan commented 7 years ago

First of all, there is no simple answer to this question. The next thing is, this is a Art-Net library. I don't know what you are connecting to it. A universe can have 512 channels. The lib can handle multiple universes. The upper limit depends on frame-rate and memory (RAM).

The ArtnetWifiNeoPixel example is what it is, a example to show you possibilities, not a high performance implementation. You have to call Adafruit for the performance of the NeoPixel-lib (WS8211, ...) Adafruit_NeoPixel

But as a small hint, from feedback, i know a configuration with 2 universes and about 340 pixels. Keep in mind, 340 pixels draw about 20A of current, that is a big power supply!

ghost commented 7 years ago

Thank you for your reply !! I understand better !!

Have you a method to calculate the number max, for example if I have a microcontroler with this feature : RAM = 64kbyte and frequency : 120mhz. And I would like 30fps

It's possible to calcul this number maximum ?

Thank you very much :) ​