LED Control =========== Your znzpi Cam has an RGB LED and two IR LEDs on board. You can control the red, green, and blue segments of the RGB LED individually and the two IR LEDs as one unit. To control the LEDs first import the `pyb` module. Then create an LED class object for the particular LED you want to control:: import pyb led = pyb.LED(1) The `pyb.LED()` call creates an LED object which you can use to control a particular LED. Pass `pyb.LED()` "1" "2" "3" to control the LED. After creating the LED control objects like above I heavily recommend that you call the `pyb.LED.off()` method for a new LED to put it into a known state. Anyway, there are three methods you can call for each LED, `pyb.LED.off()`, `pyb.LED.on()`, and `pyb.LED.toggle()` which do exactly that. Unlike other MicroPython Boards the znzpi Cam doesn't support the ``intensity()`` method to allow for PWM dimming of the LEDs. We re-purposed the timer that was used for LED dimming for generating a clock source to power the camera chip. Finally, use the RGB LED for indicator purposes in your script. As the IR LEDs, those are for night vision. When you switch out your znzpi Cam's regular lens for our IR lens (which is a lens without an IR filter) you can then turn on the IR LEDs so that your znzpi Cam can see in the dark. The IR LEDs are strong enough to illuminate about 3 meters in front of your znzpi Cam in pitch black.