adafruit / Adafruit_CircuitPython_NeoPixel

CircuitPython drivers for neopixels.
MIT License
309 stars 99 forks source link

multiple pin output simultaneously? #166

Open stanelie opened 5 days ago

stanelie commented 5 days ago

Is it possible to have 2 physical output pin send out data simultaneously? I find no code examples of this scenario.

Real world example : I want to output data to an external Neopixel device, but I want to use the onboard neopixel of my Waveshare ESP32-S3-Zero at the same time, to display other stuff (status indicator).

dhalbert commented 5 days ago

You can have multiple NeoPixel objects driving multiple strips.

stanelie commented 5 days ago

Oh! I misunderstood the constructor specifications. Thanks!