LED Brightness adjustment

Is there a code snippet which can be utilized within the cyber brick ecosystem which will adjust the brightness of the included LED pixels?

Currently there are only two choices within the applications each LED. “Steady” and “Blink”. But not a selection for changing brightness.
led brightness

Here’s an example of a code snippet that can change the color of an LED to a given RGB value. This one changes the value of the LED on the actual receiver board but you could adjust it to change the value for a connected LED. More info can be found in this section of the documentation.

import machine
import neopixel

pin = machine.Pin(8, machine.Pin.OUT)
np = neopixel.NeoPixel(pin, 1)

np[0] = (255, 0, 0)
np.write()