Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rwpalmer committed Aug 30, 2018
1 parent f29a812 commit 76e1b47
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions examples/DoorAlarm.ino
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -15,7 +15,7 @@
*/

#include <Particle.h>
#include "DFPlay.h"
#include <DFPlay.h>

const uint8_t UNKNOWN = 0, OPEN = 1, CLOSED = 2;
const uint32_t DEBOUNCE_MILLIS = 200;
Expand Down
4 changes: 2 additions & 2 deletions examples/PlayList.ino
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 <DFPlay.h>
#include <vector>


Expand Down
4 changes: 2 additions & 2 deletions examples/PlaySD-timer.ino
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -18,7 +18,7 @@
https://github.com/rwpalmer/DFPlay/blob/master/doc/PlaySD.md
*/

#include "DFPlay.h"
#include <DFPlay.h>

DFPlay dfPlay;
Timer timer(20,timerFunction); // Runs dfPlay.manageDevice() every 20ms
Expand Down
4 changes: 2 additions & 2 deletions examples/PlaySD.ino
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -12,7 +12,7 @@
https://github.com/rwpalmer/DFPlay/blob/master/doc/PlaySD.md
*/

#include "DFPlay.h"
#include <DFPlay.h>


DFPlay dfPlay;
Expand Down
4 changes: 2 additions & 2 deletions examples/PlaySelection.ino
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -14,7 +14,7 @@
*/


#include "DFPlay.h"
#include <DFPlay.h>
#include <vector>

DFPlay dfPlay;
Expand Down
4 changes: 2 additions & 2 deletions src/DFPlay.cpp
Original file line number Diff line number Diff line change
@@ -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 <DFPlay.h>

// #define LOGGING true // <-- uncomment this #define statement to enable logging to a Serial console.

Expand Down
2 changes: 1 addition & 1 deletion src/DFPlay.h
Original file line number Diff line number Diff line change
@@ -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_
Expand Down

0 comments on commit 76e1b47

Please sign in to comment.