forked from rabidaudio/synthesizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
be4dd30
commit 075cbb6
Showing
4 changed files
with
73 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#pragma once | ||
|
||
#include <Arduino.h> | ||
|
||
class PauseState | ||
{ | ||
private: | ||
bool _paused = false; | ||
bool _held = false; | ||
|
||
public: | ||
void setState(bool buttonsPressed) | ||
{ | ||
if (!_held && buttonsPressed) | ||
{ | ||
_paused = !_paused; | ||
} | ||
_held = buttonsPressed; | ||
} | ||
|
||
bool isPaused() | ||
{ | ||
return _paused; | ||
} | ||
|
||
void reset() | ||
{ | ||
_paused = false; | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters