-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds 2 new patterns: * Audio Intensity * Audio virtual 3 And modifies Audio wave to include a triphase view
- Loading branch information
1 parent
1e238dc
commit 3f8e130
Showing
34 changed files
with
733 additions
and
102 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
#ifndef _AUDIOTYPES_H | ||
#define _AUDIOTYPES_H | ||
|
||
enum class audio_mode_t | ||
{ | ||
OFF, | ||
THRESHOLD_CROSS_FFT, | ||
AUDIO3, | ||
AUDIO_INTENSITY | ||
}; | ||
|
||
enum class audio_hardware_state_t | ||
{ | ||
NOT_PRESENT, | ||
PRESENT_NO_GAIN, | ||
PRESENT | ||
}; | ||
|
||
enum audio_channel_t | ||
{ | ||
AUDIO_LEFT = 0, | ||
AUDIO_RIGHT = 1, | ||
AUDIO_VIRT = 2 | ||
}; | ||
|
||
#endif |
Oops, something went wrong.