Skip to content

Commit

Permalink
AudioBoardStream actionVolumeUp icreement value
Browse files Browse the repository at this point in the history
  • Loading branch information
pschatzmann committed Sep 27, 2024
1 parent c2ee052 commit 7434afc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/AudioLibs/AudioBoardStream.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class AudioBoardStream : public I2SCodecStream {
*/
static void actionVolumeUp(bool, int, void *) {
TRACEI();
selfAudioBoard->incrementVolume(+2);
selfAudioBoard->incrementVolume(+0.02);
}

/**
Expand All @@ -109,7 +109,7 @@ class AudioBoardStream : public I2SCodecStream {
*/
static void actionVolumeDown(bool, int, void *) {
TRACEI();
selfAudioBoard->incrementVolume(-2);
selfAudioBoard->incrementVolume(-0.02);
}

/**
Expand Down

0 comments on commit 7434afc

Please sign in to comment.