I want to use IFTTT to trigger it. I want to use zebra to do it. The post method which is given in the reference only states one pin. I get only Red,Green or Blue color. @Pavlo@Dmytro@vshymanskyy@Costas Please help
For IFTTT I recommend you to switch to Merge mode. As via IFTTT it is impossible to send few HTTP requests that are required for Split Zergba mode. In merge mode you need only one PUT HTTP request for 1 pin with body ["1","2","3"].
Exactly. This is because in merge mode array of values is send and you can’t write array to digital pins.
BLYNK_WRITE(V1) // Widget WRITEs to Virtual Pin V1
{
int r = param[0].asInt(); // getting first value
int g = param[1].asInt(); // getting second value
int b = param[2].asInt(); // getting thrid value
}