Merge pull request #123 from debsahu/master

fixed error in speed control from HA.
This commit is contained in:
Deb 2018-04-07 22:11:22 -04:00 committed by GitHub
commit 801f368373
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -863,7 +863,7 @@ void loop() {
if (mode == SET_MODE) {
DBG_OUTPUT_PORT.printf("SET_MODE: %d %d\n", ws2812fx_mode, mode);
strip.setMode(ws2812fx_mode);
mode = HOLD;
mode = SETSPEED;
}
if (mode == OFF) {
// strip.setColor(0,0,0);
@ -882,7 +882,7 @@ void loop() {
}
if (mode == SETSPEED) {
strip.setSpeed(convertSpeed(ws2812fx_speed));
// mode = HOLD;
mode = HOLD;
}
if (mode == BRIGHTNESS) {
strip.setBrightness(brightness);

View file

@ -746,7 +746,7 @@ void checkForRequests() {
uint8_t json_speed = constrain((uint8_t) root["speed"], 0, 255);
if (json_speed != ws2812fx_speed) {
ws2812fx_speed = json_speed;
mode = SETSPEED;
if(stateOn) mode = SETSPEED;
}
}