Skip to content

Commit c824e95

Browse files
committed
Small comment update
1 parent cd7b87e commit c824e95

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

DFR0534.pdf

15 Bytes
Binary file not shown.

examples/playFileByName/playFileByName.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ void setup() {
3333
* are allowed and can be used to reduce the filling space chars
3434
*
3535
* Valid examples:
36-
* - "/01 WAV" for file '/01.wav'
36+
* - "/01 WAV" for a file '/01.wav'
3737
* - "/99-AFR~1MP3" for a file '/99-Africa.mp3'
38-
* - "/SUN*MP3" for first file matching /sun*.mp3, for example '/sun.mp3'
38+
* - "/SUN*MP3" for first file matching '/sun*.mp3', for example '/sun.mp3'
3939
* - "/99-AFR*MP3" for first file matching '/99-Afr*.mp3'
40-
* - "/10*" for first audio file matching /10*.*
41-
* - "/10 /20 WAV" for the file /10/20.wav
42-
* - first means first in copy order
40+
* - "/10*" for first audio file matching '/10*.*'
41+
* - "/10 /20 WAV" for the file '/10/20.wav'
42+
* (first means first in "file copy order")
4343
*
4444
* You can get example files from
4545
* https://github.com/codingABI/DFR0534/tree/main/assets/exampleContent

src/DFR0534.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -230,21 +230,21 @@ void DFR0534::playNext()
230230
* - Without the dot for the file extension
231231
* - All characters in upper case
232232
* - maximal 8 characters
233-
* - Every file and folder whose name length is shorter then 8 chars
233+
* - Every file and folder whose name length is shorter then 8 chars
234234
* must be filled up to the 8 chars length by space chars
235235
* - must end with WAV or MP3
236236
* - Only WAV and MP3 files are supported
237-
* - Wildcards * (=multiple arbitrary characters) and ? (=one single arbitrary character)
237+
* - Wildcards * (=multiple arbitrary characters) and ? (=one single arbitrary character)
238238
* are allowed and can be used to reduce the filling space chars
239-
*
239+
*
240240
* Valid examples:
241-
* - "/01 WAV" for file '/01.wav'
241+
* - "/01 WAV" for a file '/01.wav'
242242
* - "/99-AFR~1MP3" for a file '/99-Africa.mp3'
243-
* - "/SUN*MP3" for first file matching /sun*.mp3, for example '/sun.mp3'
243+
* - "/SUN*MP3" for first file matching '/sun*.mp3', for example '/sun.mp3'
244244
* - "/99-AFR*MP3" for first file matching '/99-Afr*.mp3'
245-
* - "/10*" for first audio file matching /10*.*
246-
* - "/10 /20 WAV" for the file /10/20.wav
247-
* - first means first in copy order
245+
* - "/10*" for first audio file matching '/10*.*'
246+
* - "/10 /20 WAV" for the file '/10/20.wav'
247+
* (first means first in "file copy order")
248248
*
249249
* @param[in] path Full path of the audio file
250250
* @param[in] drive Drive, where file is stored: Drive DFR0534::DRIVEUSB, DFR0534::DRIVESD or DFR0534::DRIVEFLASH (=default)

0 commit comments

Comments
 (0)