From 360015f7b2820bc2e5d84a49139dbdd3fed30955 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 12 May 2021 17:22:28 -0700 Subject: [PATCH] Use specification compliant sketch names From the Arduino Sketch Specification: https://arduino.github.io/arduino-cli/dev/sketch-specification/#sketch-folders-and-files > The sketch root folder name and code file names must start with a basic letter (A-Z or a-z) or number (0-9), followed > by basic letters, numbers, underscores (_), dots (.) and dashes (-). --- .../_01_HelloWorld.ino => 01_HelloWorld/01_HelloWorld.ino} | 0 .../_02_GFXdemo.ino => 02_GFXdemo/02_GFXdemo.ino} | 0 examples/{_03_4GLs/_03_4GLs.ino => 03_4GLs/03_4GLs.ino} | 0 .../_04_UpdateModes.ino => 04_UpdateModes/04_UpdateModes.ino} | 0 .../_05_TapCounter.ino => 05_TapCounter/05_TapCounter.ino} | 0 .../_06_WakeOnTap.ino => 06_WakeOnTap/06_WakeOnTap.ino} | 0 verification.txt | 4 ++-- 7 files changed, 2 insertions(+), 2 deletions(-) rename examples/{_01_HelloWorld/_01_HelloWorld.ino => 01_HelloWorld/01_HelloWorld.ino} (100%) rename examples/{_02_GFXdemo/_02_GFXdemo.ino => 02_GFXdemo/02_GFXdemo.ino} (100%) rename examples/{_03_4GLs/_03_4GLs.ino => 03_4GLs/03_4GLs.ino} (100%) rename examples/{_04_UpdateModes/_04_UpdateModes.ino => 04_UpdateModes/04_UpdateModes.ino} (100%) rename examples/{_05_TapCounter/_05_TapCounter.ino => 05_TapCounter/05_TapCounter.ino} (100%) rename examples/{_06_WakeOnTap/_06_WakeOnTap.ino => 06_WakeOnTap/06_WakeOnTap.ino} (100%) diff --git a/examples/_01_HelloWorld/_01_HelloWorld.ino b/examples/01_HelloWorld/01_HelloWorld.ino similarity index 100% rename from examples/_01_HelloWorld/_01_HelloWorld.ino rename to examples/01_HelloWorld/01_HelloWorld.ino diff --git a/examples/_02_GFXdemo/_02_GFXdemo.ino b/examples/02_GFXdemo/02_GFXdemo.ino similarity index 100% rename from examples/_02_GFXdemo/_02_GFXdemo.ino rename to examples/02_GFXdemo/02_GFXdemo.ino diff --git a/examples/_03_4GLs/_03_4GLs.ino b/examples/03_4GLs/03_4GLs.ino similarity index 100% rename from examples/_03_4GLs/_03_4GLs.ino rename to examples/03_4GLs/03_4GLs.ino diff --git a/examples/_04_UpdateModes/_04_UpdateModes.ino b/examples/04_UpdateModes/04_UpdateModes.ino similarity index 100% rename from examples/_04_UpdateModes/_04_UpdateModes.ino rename to examples/04_UpdateModes/04_UpdateModes.ino diff --git a/examples/_05_TapCounter/_05_TapCounter.ino b/examples/05_TapCounter/05_TapCounter.ino similarity index 100% rename from examples/_05_TapCounter/_05_TapCounter.ino rename to examples/05_TapCounter/05_TapCounter.ino diff --git a/examples/_06_WakeOnTap/_06_WakeOnTap.ino b/examples/06_WakeOnTap/06_WakeOnTap.ino similarity index 100% rename from examples/_06_WakeOnTap/_06_WakeOnTap.ino rename to examples/06_WakeOnTap/06_WakeOnTap.ino diff --git a/verification.txt b/verification.txt index c37dbe9..f6745d4 100644 --- a/verification.txt +++ b/verification.txt @@ -1,13 +1,13 @@ # Test EPD functionality -Connect a Particle Photon with a Paperino Epaper on a breadboard as described in the hookup guide (https://robpo.github.io/Paperino/). Open the example _01_HelloWorld.ino and verify the proper functionality by comparing the display behaviour with the video shown on the hookup-guide. +Connect a Particle Photon with a Paperino Epaper on a breadboard as described in the hookup guide (https://robpo.github.io/Paperino/). Open the example 01_HelloWorld.ino and verify the proper functionality by comparing the display behaviour with the video shown on the hookup-guide. Repeat for Core, Electron and Bluz.io Repeat the same procedure for example number 02, 03 and 04. # Test Accelerometer functionality -Connect a Particle Photon with a Paperino Epaper on a breadboard as described in the hookup guide (https://robpo.github.io/Paperino/). Open the example _05_TapCounter.ino and verify the proper functionality by comparing the display behaviour with the video shown on the hookup-guide. +Connect a Particle Photon with a Paperino Epaper on a breadboard as described in the hookup guide (https://robpo.github.io/Paperino/). Open the example 05_TapCounter.ino and verify the proper functionality by comparing the display behaviour with the video shown on the hookup-guide. Repeat for Core, Electron and Bluz.io Repeat the same procedure for example number 06.