Skip to content

Commit

Permalink
Fix WakeUp <x> ignores provided value (arendst#7473)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hadinger committed Jan 10, 2020
1 parent 2dde032 commit be85d3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions tasmota/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Add support for gzipped binaries
- Update IRremoteESP8266 lib updated to v2.7.2
- Fix ``WakeUp <x>`` ignores provided value (#7473)

### 8.1.0.2 20191230

Expand Down
2 changes: 1 addition & 1 deletion tasmota/xdrv_04_light.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2325,7 +2325,7 @@ void CmndScheme(void)
void CmndWakeup(void)
{
if ((XdrvMailbox.payload >= 0) && (XdrvMailbox.payload <= 100)) {
Settings.light_dimmer = XdrvMailbox.payload;
light_controller.changeDimmer(XdrvMailbox.payload);
}
Light.wakeup_active = 3;
Settings.light_scheme = LS_WAKEUP;
Expand Down

0 comments on commit be85d3a

Please sign in to comment.