You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -113,17 +113,20 @@ And some more useful examples:
113
113
114
114
#### Listening to the Result with a Webbrowser
115
115
116
-
I am providing a simple webserver which can render the audio data as wav result. Here are some examples
116
+
I am providing a simple webserver which can render the audio data as wav result.
117
+
Here are some examples:
117
118
118
119
-[streams-generator-webserver_wav](examples/streams-generator-webserver_wav) A Webserver which renders some generated sound
119
120
-[streams-sam-webserver_wav](examples/streams-sam-webserver_wav) A Webserver which renders the result from the SAM TTS engine
120
121
121
122
#### Logging
122
123
123
-
The application uses a built in logger. You can adapt the loging by changing AudioConfig.h
124
+
The application uses a built in logger (see AudioLogger.h and AudioConfig.h). You can e.g. deactivate the logging by changing USE_AUDIO_LOGGING to false in the AudioConfig.h:
124
125
125
126
```
126
127
#define USE_AUDIO_LOGGING false
128
+
#define LOG_LEVEL AudioLogger::Warning
129
+
#define LOG_STREAM Serial
127
130
```
128
131
129
132
Per default we use the log level warning and the logging output is going to Serial. You can also change this in your sketch by calling AudioLogger begin with the output stream and the log level e.g:
0 commit comments