setEyelightAllPetals(id,red,green,blue)

Control all the 8 petals (pixels) of the eye lamp to light up a set of color.

Parameter

Example:

Use the uKit Explore v2 board to control all the petals of eye lamp ID-1 to turn red, and turn to purple after 400ms.

#include "uKitExplore2.h"

void setup() {    
    Initialization();    
    setEyelightAllPetals(1,255,0,0);    
    delay(400);    
    setEyelightAllPetals(1,255,0,255);
}

void loop() {

}

About brightness control: As long as the mixture color ratio remains the same, the brightness will be decreased.

Use the uKit Explore v2 board to control all the petals of the eye lamp to be purple (brightest), and after 400ms to purple (medium intensity).

#include "uKitExplore2.h"

void setup() {    
    Initialization();    
    setEyelightAllPetals(1,255,0,255);    
    delay(400);    
    setEyelightAllPetals(1,127,0,127);
}

void loop() {

}

Last updated