Skip to content

Commit

Permalink
Issue_212: Sleep Timer Modification card doesn't work properly with
Browse files Browse the repository at this point in the history
NeoPixel Ring
  • Loading branch information
boerge1 committed Jul 4, 2024
1 parent b5b9404 commit 33489d2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ Die SD Karte (Ordner mp3 und advert) hat sich gegenüber der Version 3.1.9 geän

# Change Log

## Version 3.1.10 (04.07.2024)
- [Issue 212](https://github.com/tonuino/TonUINO-TNG/issues/212): Sleep Timer Modification card doesn't work properly with NeoPixel Ring

## Version 3.1.10 (27.06.2024)
- [Issue 210](https://github.com/tonuino/TonUINO-TNG/issues/210): Make text in the admin menu for switching volume button more clearer

Expand Down
2 changes: 1 addition & 1 deletion TonUINO-TNG.ino
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ void setup()
LOG(init_log, s_error, F("TonUINO Version 3.1 - refactored by Boerge1\n"));
LOG(init_log, s_error, F("created by Thorsten Voß and licensed under GNU/GPL."));
LOG(init_log, s_error, F("Information and contribution at https://tonuino.de.\n"));
LOG(init_log, s_error, F("V3.1.10 27.06.24\n"));
LOG(init_log, s_error, F("V3.1.10 04.07.24\n"));

#ifdef TonUINO_Classic
LOG(init_log, s_error, F("C "), lf_no);
Expand Down
2 changes: 2 additions & 0 deletions src/modifier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ void SleepTimer::loop() {
if (SM_tonuino::is_in_state<Play>())
SM_tonuino::dispatch(command_e(commandRaw::pause));
//tonuino.resetActiveModifier();
tonuino.shutdown();
}
else {
stopAfterTrackFinished_active = true;
Expand All @@ -39,6 +40,7 @@ bool SleepTimer::handleNext() {
stopAfterTrackFinished_active = false;
sleepTimer.stop();
//tonuino.resetActiveModifier();
tonuino.shutdown();
}
return false;
}
Expand Down

0 comments on commit 33489d2

Please sign in to comment.