Skip to content

Commit 0d8b4a1

Browse files
authored
Merge pull request #3 from s-light/main
playFileByName: tweak description
2 parents d7d2252 + f125ef5 commit 0d8b4a1

File tree

2 files changed

+91
-2
lines changed

2 files changed

+91
-2
lines changed

.gitignore

Lines changed: 89 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,89 @@
1-
internal
1+
internal
2+
3+
# arduino IDE build
4+
build
5+
6+
# Notepad++ backups
7+
*.bak
8+
**/nppBackup
9+
10+
# manual backups
11+
**/old
12+
*.zip
13+
14+
.vscode
15+
16+
## C & CPP things
17+
18+
# Compiled Object files
19+
*.slo
20+
*.lo
21+
*.o
22+
*.obj
23+
24+
# Precompiled Headers
25+
*.gch
26+
*.pch
27+
28+
# Compiled Dynamic libraries
29+
*.so
30+
*.dylib
31+
*.dll
32+
33+
# Fortran module files
34+
*.mod
35+
36+
# Compiled Static libraries
37+
*.lai
38+
*.la
39+
*.a
40+
*.lib
41+
42+
# Executables
43+
*.exe
44+
*.out
45+
*.app
46+
47+
# Windows image file caches
48+
Thumbs.db
49+
ehthumbs.db
50+
51+
# Folder config file
52+
Desktop.ini
53+
54+
# Recycle Bin used on file shares
55+
$RECYCLE.BIN/
56+
57+
# Windows Installer files
58+
*.cab
59+
*.msi
60+
*.msm
61+
*.msp
62+
63+
# Windows shortcuts
64+
*.lnk
65+
66+
# =========================
67+
# Operating System Files
68+
# =========================
69+
70+
# OSX
71+
# =========================
72+
73+
.DS_Store
74+
.AppleDouble
75+
.LSOverride
76+
77+
# Thumbnails
78+
._*
79+
80+
# Files that might appear on external disk
81+
.Spotlight-V100
82+
.Trashes
83+
84+
# Directories potentially created on remote AFP share
85+
.AppleDB
86+
.AppleDesktop
87+
Network Trash Folder
88+
Temporary Items
89+
.apdisk

examples/playFileByName/playFileByName.ino

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ void setup() {
3535
* Valid examples:
3636
* - "/01 WAV" for 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' (in this order for example: sun0.mp3 sun.mp3 sun1.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'
4040
* - "/10*" for first* audio file matching /10*.*
4141
* - "/10 /20 WAV" for the file /10/20.wav
42+
* - first means first in copy order
4243
*
4344
* You can get example files from
4445
* https://github.com/codingABI/DFR0534/tree/main/assets/exampleContent

0 commit comments

Comments
 (0)