From 43470ca2ed55a9544669f899ce10da46c19c7cd3 Mon Sep 17 00:00:00 2001 From: pschatzmann Date: Fri, 1 Nov 2024 06:45:08 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20doxygen=20from=20@=20pschatzma?= =?UTF-8?q?nn/arduino-audio-tools@18dc3fccc52d9321685f667b34060d71c6b7eef6?= =?UTF-8?q?=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 8654509a0..7ba4f4dab 100644 --- a/index.html +++ b/index.html @@ -120,12 +120,13 @@

The library also provides a versatile AudioPlayer. Further information can be found in the Wiki

Logging

-

The application uses a built in logger (see AudioLogger.h and AudioConfig.h). You can deactivate the logging by changing USE_AUDIO_LOGGING to false in the AudioConfig.h to decrease the memory usage:

-
{C++}
-
#define USE_AUDIO_LOGGING false
-

Per default we use the log level warning and the logging output is going to Serial. You can change this in your sketch by calling AudioLogger begin with the output stream and the log level e.g:

+

The application uses a built in logger: By default we use the log level warning and the logging output is going to Serial. You can change this in your sketch by calling e.g:

{C++}
AudioToolsLogger.begin(Serial, AudioToolsLogLevel::Debug);
+

Valid values are: Debug, Info, Warning, Error.

+

You can also deactivate the logging by changing USE_AUDIO_LOGGING to false in the AudioConfig.h to decrease the memory usage:

+
{C++}
+
#define USE_AUDIO_LOGGING false

Show and Tell

Get some inspiration from projects that were using this library or share your projects with the community.