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
To get rid of ArduinoLog 3rd party dependency.
To make use of ESP Arduino framework built in logger.
Depending on the platform it's the one which comes from
Arduino core for ESP32 or Arduino core for ESP8266.
Documentation updated accordingly.
The original plan to provide ESP-IDF framework compatibility is not yet done,
as the library implementation uses much more Arduino core for ESP dependent stuff.
Copy file name to clipboardExpand all lines: README.md
+33-10Lines changed: 33 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,23 +62,46 @@ Please note that `player.switchToMp3Mode()` is an optional switch. Some of VS105
62
62
You can modify the board, but there is a more elegant way without soldering. For more details please read a discussion here: [http://www.bajdi.com/lcsoft-vs1053-mp3-module/#comment-33773](http://www.bajdi.com/lcsoft-vs1053-mp3-module/#comment-33773).
63
63
<br />No side effects for boards which do not need this switch, so you can call it just in case.
64
64
65
-
#### Third-party dependencies
65
+
#### Logging / debugging
66
66
67
-
The library use also a third-party logging framework [ArduinoLog](http://platformio.org/lib/show/1532/ArduinoLog/) for debugging purposes.<br />
68
-
This dependency will be resolved automatically.
67
+
The library uses ESP Arduino framework built in logger (Arduino core for [ESP32](https://github.com/espressif/arduino-esp32/issues/893#issuecomment-348069135) and [ESP8266](https://github.com/esp8266/Arduino/blob/master/doc/Troubleshooting/debugging.rst#debug-level)).<br />
69
68
70
-
Then you are able to include and use this library from your code (it offers several log levels):
69
+
To see debug messages please add build flags to your `platformio.ini` as below (depending on platform):
0 commit comments