Multiple Lights with single mc

Hi there,
I got 2 small questions.

  1. Can I use a single mc for multiple lights? E.g. connect 2 led stripes to one mc and control both individually.

  2. Do I suffer from hue bridge limitations when I use hue emulator + OEM bridge for ZigBee communication?

Thx a lot.

  1. Yes this is possible with the sketches we provide. However only with smart Led strips such as WS2812 and SK6812, or the P9813 led controller. However it should be possible to modify sketches to support multiple “dumb” LED’s

  2. What limitations are you referring to? If you use the OEM bridge for ZigBee you will be limited to officially supported ZigBee hue products. Was there another limitation you were thinking of?

thx for the fast response.

  1. that’s great. I’m looking into an alternative for asus aura, possibly with hue integration. I’d like to control top/bottom fans… separately without using like 10 microcontrollers. I’ll do some more research here
  2. if I remember correctly you are limited to 50 devices with a hue bridge

Yeh if your using the OEM hub then that limit stands for the devices connected to the hub. So you can have 50 ZigBee devices plus anything else compatible with diyhue. If you use deconz and a ZigBee USB stick, there is in theory no limit. However, eventually something would crash.

could you link me a ressource for using a single mc, which shows up as 2 (or more) separate lights in hue, please?
I didn’t find any code that, does that yet.

This sketch works with WS2812 led strips and allows you to define the number of lights created and the number of LED’s per light.

awesome! thx a lot.
I can do some diy time between xmas and new year!

1 Like

Did you ever accomplish what you were going for? If not, you can do what I did, it is a little janky and requires a lot of current, but you can get a Ws2812b strip and solder jst 3-pin connectors (or whatever 5v argb connectors you need for your devices), solder along the strip at x number of leds, x being however many leds the previous device is using, and then do the next one and so on. That way they are all separately controllable and run in series. This works with Aura out of the box, what I also do is usefreeware Jacknet RGBSync+ which allows you to control each individual led you have separately and however you want to, it tricks Corsair icue into thinking your aura compatible stuff is actually one of their devices. And the icue software is way better than aura sync. I just hide the 2 ws2812b strips I’m using in the back of my case out of sight. Depending on how many leds you have, you may need a separate 5v psu, I’m running almost 300 leds in my case so it’s close to a 20A draw at max brightness. Anyways, if you are interested in that approach and have any questions, let me know.

Not sure if I properly replied with my comment, so this way you hopefully get notified

What this sketch does is ask the amount of lights and the amount of LEDs per light.
Is there any possibility to create multiple lights while defining the amount of LEDs for each light on its own?
E.g.:
Light #1: 12 LEDs
Light #2: 6 LEDs
Light #3: 144 LEDs

I want to decorate my wall unit with multiple LED strips but it would be a waste to use 6 microcontrollers for 6 lights if I could use only one. Splitting the amount of LEDs per light by 6 would be possible, however this would result in 24 individual lights for my “big light” consisting of 144 LEDs… pretty unhandy.

Currently the number of leds are divided into equal numbers. There is a commit pending that will allow individual separation just as you will need