Skip to content

Commit d6a0c17

Browse files
committed
2 parents 541a5f5 + 028d803 commit d6a0c17

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,11 @@ Dependent on the example you might need to install some of the following librari
127127

128128
After installing a library, you might need to activate it's usage in the ```AudioConfig.h``` file!
129129

130+
## Show and Tell
131+
132+
Get some inspiration [from projects that were using this library](https://github.com/pschatzmann/arduino-audio-tools/discussions/categories/show-and-tell) or share your projects with the community.
133+
134+
130135
### Documentation
131136

132137
- Here is the generated [Class Documentation](https://pschatzmann.github.io/arduino-audio-tools/html/annotated.html).

src/AudioTools/AudioLogger.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ class AudioLogger {
133133
#define LOGW(...) if (AudioLogger::instance().level()<=AudioLogger::Warning) { LOG_OUT(AudioLogger::Warning, __VA_ARGS__);}
134134
#define LOGE(...) if (AudioLogger::instance().level()<=AudioLogger::Error) { LOG_OUT(AudioLogger::Error, __VA_ARGS__);}
135135

136+
}
137+
136138
#else
137139

138140
#define LOGD(...)
@@ -141,5 +143,3 @@ class AudioLogger {
141143
#define LOGE(...)
142144

143145
#endif
144-
145-
}

0 commit comments

Comments
 (0)