From 1afec55fdeca459bfaadc1aea6fc8d018fc3c0f6 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sat, 4 Nov 2017 15:57:41 -0700 Subject: [PATCH] Put sketch in an appropriately named folder The Arduino IDE requires that the sketch folder name matches the sketch file name. When you open a sketch that is in a folder with a mismatched name the Arduino IDE prompts the user and then moves the sketch file to an appropriately named folder. Unfortunately the Arduino IDE does not also move the other sketch files along with it. That causes the sketch to no longer compile as it requires all the other .ino files that were located in the src folder. Closes https://github.com/Espressobar/arduino-grind-timer/issues/2 --- src/{ => Grinder_Timer_1_1}/Button.ino | 0 src/{ => Grinder_Timer_1_1}/EEPROM.ino | 0 src/{ => Grinder_Timer_1_1}/Encoder.ino | 0 src/{ => Grinder_Timer_1_1}/Grinder_Light.ino | 0 src/{ => Grinder_Timer_1_1}/Grinder_Timer_1_1.ino | 0 src/{ => Grinder_Timer_1_1}/Init.ino | 0 src/{ => Grinder_Timer_1_1}/OLED.ino | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename src/{ => Grinder_Timer_1_1}/Button.ino (100%) rename src/{ => Grinder_Timer_1_1}/EEPROM.ino (100%) rename src/{ => Grinder_Timer_1_1}/Encoder.ino (100%) rename src/{ => Grinder_Timer_1_1}/Grinder_Light.ino (100%) rename src/{ => Grinder_Timer_1_1}/Grinder_Timer_1_1.ino (100%) rename src/{ => Grinder_Timer_1_1}/Init.ino (100%) rename src/{ => Grinder_Timer_1_1}/OLED.ino (100%) diff --git a/src/Button.ino b/src/Grinder_Timer_1_1/Button.ino similarity index 100% rename from src/Button.ino rename to src/Grinder_Timer_1_1/Button.ino diff --git a/src/EEPROM.ino b/src/Grinder_Timer_1_1/EEPROM.ino similarity index 100% rename from src/EEPROM.ino rename to src/Grinder_Timer_1_1/EEPROM.ino diff --git a/src/Encoder.ino b/src/Grinder_Timer_1_1/Encoder.ino similarity index 100% rename from src/Encoder.ino rename to src/Grinder_Timer_1_1/Encoder.ino diff --git a/src/Grinder_Light.ino b/src/Grinder_Timer_1_1/Grinder_Light.ino similarity index 100% rename from src/Grinder_Light.ino rename to src/Grinder_Timer_1_1/Grinder_Light.ino diff --git a/src/Grinder_Timer_1_1.ino b/src/Grinder_Timer_1_1/Grinder_Timer_1_1.ino similarity index 100% rename from src/Grinder_Timer_1_1.ino rename to src/Grinder_Timer_1_1/Grinder_Timer_1_1.ino diff --git a/src/Init.ino b/src/Grinder_Timer_1_1/Init.ino similarity index 100% rename from src/Init.ino rename to src/Grinder_Timer_1_1/Init.ino diff --git a/src/OLED.ino b/src/Grinder_Timer_1_1/OLED.ino similarity index 100% rename from src/OLED.ino rename to src/Grinder_Timer_1_1/OLED.ino