From f644e4756d7c633b52e517694504170602c38a51 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sat, 25 May 2019 03:53:48 -0700 Subject: [PATCH] Move example sketch to appropriately named folder The Arduino IDE requires the sketch folder name to match the filename of the primary sketch file. This change causes the example sketch to be accessible via the Arduino IDE's File > Examples > LIBRARYNAME menu after the library is installed. Reference: https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5:-Library-specification#library-examples --- Due_Sound.ino => examples/Due_Sound/Due_Sound.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Due_Sound.ino => examples/Due_Sound/Due_Sound.ino (95%) diff --git a/Due_Sound.ino b/examples/Due_Sound/Due_Sound.ino similarity index 95% rename from Due_Sound.ino rename to examples/Due_Sound/Due_Sound.ino index fc9dafe..3929502 100644 --- a/Due_Sound.ino +++ b/examples/Due_Sound/Due_Sound.ino @@ -679,4 +679,4 @@ void loop() //void loop() { // int16_t t = player.tick(dataFile); // Serial.println(t); -//} \ No newline at end of file +//}