setEyelightLook(id,face,times,red,green,blue)

Set the emoticons to light up different color of expressions (non-blocking)

Parameter

Example

Use the uKit Explore v2 board to control the blinking of eye lamp ID-1 in red and 5 times

#include "uKitExplore2.h"

void setup() {    
    Initialization();    
    setEyelightLook(1,0,5,254,0,0);
}

void loop() {

}

Use the uKit Explore v2 board to control the blinking of eye lamp ID-1, ID-2 in red and 5 times

#include "uKitExplore2.h"
void setup() {    
    Initialization();    
    setEyelightLook(1,0,5,254,0,0);    
    setEyelightLook(2,0,5,254,0,0);
}

void loop() {

}

Last updated