diff --git a/wled00/wled16_blynk.ino b/wled00/wled16_blynk.ino index 4120f03b6..82aae164d 100644 --- a/wled00/wled16_blynk.ino +++ b/wled00/wled16_blynk.ino @@ -58,18 +58,21 @@ BLYNK_WRITE(V3) BLYNK_WRITE(V4) { effectCurrent = param.asInt()-1;//fx - colorUpdated(9); + strip.setMode(effectCurrent); + colorUpdated(6); } BLYNK_WRITE(V5) { effectSpeed = param.asInt();//sx + strip.setSpeed(effectSpeed); colorUpdated(6); } BLYNK_WRITE(V6) { effectIntensity = param.asInt();//ix + strip.setIntensity(effectIntensity); colorUpdated(6); }