From dd4baf6b5f1038c2f859c93200c33eb3a53dd96b Mon Sep 17 00:00:00 2001 From: per1234 Date: Fri, 20 Jul 2018 22:58:26 -0700 Subject: [PATCH] Move example sketches to appropriately named folders 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 --- examples/{ => DSC_Library_Example}/DSC_Library_Example.ino | 0 .../DSC_Library_Example_Simple.ino | 0 .../{ => DSC_Library_Example_noEth}/DSC_Library_Example_noEth.ino | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename examples/{ => DSC_Library_Example}/DSC_Library_Example.ino (100%) rename examples/{ => DSC_Library_Example_Simple}/DSC_Library_Example_Simple.ino (100%) rename examples/{ => DSC_Library_Example_noEth}/DSC_Library_Example_noEth.ino (100%) diff --git a/examples/DSC_Library_Example.ino b/examples/DSC_Library_Example/DSC_Library_Example.ino similarity index 100% rename from examples/DSC_Library_Example.ino rename to examples/DSC_Library_Example/DSC_Library_Example.ino diff --git a/examples/DSC_Library_Example_Simple.ino b/examples/DSC_Library_Example_Simple/DSC_Library_Example_Simple.ino similarity index 100% rename from examples/DSC_Library_Example_Simple.ino rename to examples/DSC_Library_Example_Simple/DSC_Library_Example_Simple.ino diff --git a/examples/DSC_Library_Example_noEth.ino b/examples/DSC_Library_Example_noEth/DSC_Library_Example_noEth.ino similarity index 100% rename from examples/DSC_Library_Example_noEth.ino rename to examples/DSC_Library_Example_noEth/DSC_Library_Example_noEth.ino