setEyelightAllPetals(id,red,green,blue)
Control all the 8 petals (pixels) of the eye lamp to light up a set of color.
Parameter
Example:
#include "uKitExplore2.h"
void setup() {
Initialization();
setEyelightAllPetals(1,255,0,0);
delay(400);
setEyelightAllPetals(1,255,0,255);
}
void loop() {
}Last updated