Skip to content

Commit

Permalink
Merge pull request #47 from Aircoookie/development
Browse files Browse the repository at this point in the history
Fixed Blynk FX updates
  • Loading branch information
Aircoookie authored Aug 31, 2018
2 parents 82d40f6 + 95083cf commit e3b9b34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion wled00/wled00.ino
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
#include "src/dependencies/e131/E131.h"

//version in format yymmddb (b = daily build)
#define VERSION 1808111
#define VERSION 1808311
char versionString[] = "0.7.1";

//AP and OTA default passwords (change them!)
Expand Down
5 changes: 4 additions & 1 deletion wled00/wled16_blynk.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit e3b9b34

Please sign in to comment.