From 1818e1382ae7c57f67bf007bc846175c611b59b9 Mon Sep 17 00:00:00 2001 From: per1234 Date: Mon, 23 Jul 2018 01:21:14 -0700 Subject: [PATCH] Rename example sketch file to match folder name The Arduino IDE requires the sketch folder name to match the filename of the primary sketch file. On a filename case-sensitive OS like Linux, this includes matching case. This change causes the example sketch to be accessible via the Arduino IDE's File > Examples > LIBRARYNAME menu after the library is installed. --- examples/CdS/{CDS.ino => CdS.ino} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename examples/CdS/{CDS.ino => CdS.ino} (99%) diff --git a/examples/CdS/CDS.ino b/examples/CdS/CdS.ino similarity index 99% rename from examples/CdS/CDS.ino rename to examples/CdS/CdS.ino index da9d4dd..fd0fd82 100644 --- a/examples/CdS/CDS.ino +++ b/examples/CdS/CdS.ino @@ -71,4 +71,4 @@ void loop() { Serial.println(""); delay(5000); -} \ No newline at end of file +}