Skip to content

Commit cd7b87e

Browse files
committed
Updates for v1.0.3
Comment changes, small fixes in docu, update doxygen
1 parent 0d8b4a1 commit cd7b87e

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed

DFR0534.pdf

-3.22 KB
Binary file not shown.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ For function details see comments in [DFR0534.cpp](src/DFR0534.cpp)
8080
Minimal schematic to use this library
8181
| Pin | Connected to |
8282
| ------------- | ------------- |
83-
| TX | Used SoftwareSerial RX |
84-
| RX | Used SoftwareSerial TX* |
83+
| TX | SoftwareSerial RX |
84+
| RX | SoftwareSerial TX* |
8585
| GND | Ground |
8686
| VCC | 3.3-5V |
8787
| SP+ | Speaker + connector |

examples/playFileByName/playFileByName.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void setup() {
3737
* - "/99-AFR~1MP3" for a file '/99-Africa.mp3'
3838
* - "/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*.*
40+
* - "/10*" for first audio file matching /10*.*
4141
* - "/10 /20 WAV" for the file /10/20.wav
4242
* - first means first in copy order
4343
*

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=DFR0534
2-
version=1.0.2
2+
version=1.0.3
33
author=codingABI
44
maintainer=codingABI
55
sentence=Class for controlling a DFR0534 audio module by SoftwareSerial

src/DFR0534.cpp

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* @author codingABI https://github.com/codingABI/
3939
* @copyright 2-Clause BSD License
4040
* @file DFR0534.cpp
41-
* @version 1.0.2
41+
* @version 1.0.3
4242
*/
4343
#include "DFR0534.h"
4444

@@ -238,12 +238,13 @@ void DFR0534::playNext()
238238
* are allowed and can be used to reduce the filling space chars
239239
*
240240
* Valid examples:
241-
* - "/01 WAV" for file 01.wav
242-
* - "/99-AFR~1MP3" for a file /99-Africa.mp3
243-
* - "/SUN*MP3" for first file matching /sun*.mp3, for example '/sun.mp3' (in this order for example: sun0.mp3 sun.mp3 sun1.mp3)
244-
* - "/99-AFR*MP3" for first file matching /99-Afr*.mp3
241+
* - "/01 WAV" for file '/01.wav'
242+
* - "/99-AFR~1MP3" for a file '/99-Africa.mp3'
243+
* - "/SUN*MP3" for first file matching /sun*.mp3, for example '/sun.mp3'
244+
* - "/99-AFR*MP3" for first file matching '/99-Afr*.mp3'
245245
* - "/10*" for first audio file matching /10*.*
246246
* - "/10 /20 WAV" for the file /10/20.wav
247+
* - first means first in copy order
247248
*
248249
* @param[in] path Full path of the audio file
249250
* @param[in] drive Drive, where file is stored: Drive DFR0534::DRIVEUSB, DFR0534::DRIVESD or DFR0534::DRIVEFLASH (=default)

src/DFR0534.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414
* @author codingABI https://github.com/codingABI/
1515
* @copyright 2-Clause BSD License
1616
* @file DFR0534.h
17-
* @version 1.0.2
17+
* @version 1.0.3
1818
*/
1919
#pragma once
2020

2121
/** Library version */
22-
#define DFR0534_VERSION "1.0.2"
22+
#define DFR0534_VERSION "1.0.3"
2323

2424
#include <Arduino.h>
2525
#include <Stream.h>

0 commit comments

Comments
 (0)