BlinkStick Nano - is it possible to trigger both indexes at once?

I’m testing bits out with the CLI and Python package but by default it seems both just trigger index=0.

Is it possible to trigger both indexes with the same command call?
It would be even better if I could make it blink separate colours on each index but at the exact same time.

Is this possible at all?

If you prefer Python, you can do this by using the LED frames with a simple Python script:

#Import blinkstick module
from blinkstick import blinkstick
import time

#Find the first BlinkStick
bstick = blinkstick.find_first()

bstick.set_led_data(0, [0,255,0,0,255,0]) #sets all red
time.sleep(1)
bstick.set_led_data(0, [255,0,0,255,0,0]) #sets all green
time.sleep(1)
bstick.set_led_data(0, [0, 0,255,0,0,255]) #sets all blue
time.sleep(1)