diff --git a/examples/DoorAlarm.ino b/examples/DoorAlarm.ino index 017bf86..4e20262 100644 --- a/examples/DoorAlarm.ino +++ b/examples/DoorAlarm.ino @@ -1,7 +1,7 @@ /* Project: DFPlay library File: DoorAlarm.ino - Version: 0.0.8 - August 2018 + Version: 0.0.9 - August 2018 Copyright: 2018, Rodney Palmer (rwpalmeribm@gmail.com) License: GNU GPLv3 @@ -15,7 +15,7 @@ */ #include -#include "DFPlay.h" +#include const uint8_t UNKNOWN = 0, OPEN = 1, CLOSED = 2; const uint32_t DEBOUNCE_MILLIS = 200; diff --git a/examples/PlayList.ino b/examples/PlayList.ino index 264eeb6..856642b 100644 --- a/examples/PlayList.ino +++ b/examples/PlayList.ino @@ -1,7 +1,7 @@ /* Project: DFPlay library File: PlayList.ino - Version: 0.0.8 August 2018 + Version: 0.0.9 August 2018 Copyright: 2018, Rodney Palmer (rwpalmeribm@gmail.com) License: GNU GPLv3 @@ -12,7 +12,7 @@ LINK TO MORE INFORMATION ABOUT THIS EXAMPLE: https://github.com/rwpalmer/DFPlay/blob/master/doc/PlayList.md */ -#include "DFPlay.h" +#include #include diff --git a/examples/PlaySD-timer.ino b/examples/PlaySD-timer.ino index ed11b6e..ac2a8b1 100644 --- a/examples/PlaySD-timer.ino +++ b/examples/PlaySD-timer.ino @@ -1,7 +1,7 @@ /* Project: DFPlay library File: PlaySD-timer.ino - Version: 0.0.8 - August 2018 + Version: 0.0.9 - August 2018 Copyright: 2018, Rodney Palmer (rwpalmeribm@gmail.com) License: GNU GPLv3 @@ -18,7 +18,7 @@ https://github.com/rwpalmer/DFPlay/blob/master/doc/PlaySD.md */ -#include "DFPlay.h" +#include DFPlay dfPlay; Timer timer(20,timerFunction); // Runs dfPlay.manageDevice() every 20ms diff --git a/examples/PlaySD.ino b/examples/PlaySD.ino index 114eb77..27bc13b 100644 --- a/examples/PlaySD.ino +++ b/examples/PlaySD.ino @@ -1,7 +1,7 @@ /* Project: DFPlay library File: PlaySD.ino - Version: 0.0.8 - August 2018 + Version: 0.0.9 - August 2018 Copyright: 2018, Rodney Palmer (rwpalmeribm@gmail.com) License: GNU GPLv3 @@ -12,7 +12,7 @@ https://github.com/rwpalmer/DFPlay/blob/master/doc/PlaySD.md */ -#include "DFPlay.h" +#include DFPlay dfPlay; diff --git a/examples/PlaySelection.ino b/examples/PlaySelection.ino index 545f445..0759c60 100644 --- a/examples/PlaySelection.ino +++ b/examples/PlaySelection.ino @@ -1,7 +1,7 @@ /* Project: DFPlay library File: DFPlaySelections.ino - Version: 0.0.8 - August 2018 + Version: 0.0.9 - August 2018 Copyright: 2018, Rodney Palmer (rwpalmeribm@gmail.com) License: GNU GPLv3 @@ -14,7 +14,7 @@ */ -#include "DFPlay.h" +#include #include DFPlay dfPlay; diff --git a/src/DFPlay.cpp b/src/DFPlay.cpp index efedf35..70b826f 100644 --- a/src/DFPlay.cpp +++ b/src/DFPlay.cpp @@ -1,11 +1,11 @@ /* Project: DFPlay library File: DFPlay.cpp - Version: 0.0.8 - August 2018 + Version: 0.0.9 - August 2018 Copyright: 2018, Rodney Palmer (rwpalmeribm@gmail.com) License: GNU GPLv3 */ -#include "DFPlay.h" +#include // #define LOGGING true // <-- uncomment this #define statement to enable logging to a Serial console. diff --git a/src/DFPlay.h b/src/DFPlay.h index a5dd058..a9925f3 100644 --- a/src/DFPlay.h +++ b/src/DFPlay.h @@ -1,7 +1,7 @@ /* Project: DFPlay library File: DFPlay.h - Version: 0.0.8 - August 2018 + Version: 0.0.9 - August 2018 Copyright: 2018, Rodney Palmer (rwpalmeribm@gmail.com) License: GNU GPLv3 */ #ifndef __DFPLAY_H_