From b36d3d76de0a2003b1d917cbf90a47eb6b306ebc Mon Sep 17 00:00:00 2001 From: David Huss <dh@atoav.com> Date: Fri, 16 Feb 2024 16:54:28 +0100 Subject: [PATCH] Move code into sketch folder The Arduino IDE wants things to be in a folder that has the same name as the ino. Lets do that then. --- .gitignore | 4 ++++ {src => daisy-looper}/button_grid.h | 0 {src => daisy-looper}/buttons.h | 0 {src => daisy-looper}/daisy-looper.ino | 0 {src => daisy-looper}/env_follower.h | 0 {src => daisy-looper}/helpers.h | 0 {src => daisy-looper}/leds.h | 0 {src => daisy-looper}/lfo.h | 0 {src => daisy-looper}/looper.h | 0 {src => daisy-looper}/luts.h | 0 {src => daisy-looper}/potentiometers.h | 0 {src => daisy-looper}/ui.h | 0 src/.~lock.menu.ods# | 1 - 13 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 .gitignore rename {src => daisy-looper}/button_grid.h (100%) rename {src => daisy-looper}/buttons.h (100%) rename {src => daisy-looper}/daisy-looper.ino (100%) rename {src => daisy-looper}/env_follower.h (100%) rename {src => daisy-looper}/helpers.h (100%) rename {src => daisy-looper}/leds.h (100%) rename {src => daisy-looper}/lfo.h (100%) rename {src => daisy-looper}/looper.h (100%) rename {src => daisy-looper}/luts.h (100%) rename {src => daisy-looper}/potentiometers.h (100%) rename {src => daisy-looper}/ui.h (100%) delete mode 100644 src/.~lock.menu.ods# diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..91ed5e2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +build/* +build +.~lock.* +*.private.* diff --git a/src/button_grid.h b/daisy-looper/button_grid.h similarity index 100% rename from src/button_grid.h rename to daisy-looper/button_grid.h diff --git a/src/buttons.h b/daisy-looper/buttons.h similarity index 100% rename from src/buttons.h rename to daisy-looper/buttons.h diff --git a/src/daisy-looper.ino b/daisy-looper/daisy-looper.ino similarity index 100% rename from src/daisy-looper.ino rename to daisy-looper/daisy-looper.ino diff --git a/src/env_follower.h b/daisy-looper/env_follower.h similarity index 100% rename from src/env_follower.h rename to daisy-looper/env_follower.h diff --git a/src/helpers.h b/daisy-looper/helpers.h similarity index 100% rename from src/helpers.h rename to daisy-looper/helpers.h diff --git a/src/leds.h b/daisy-looper/leds.h similarity index 100% rename from src/leds.h rename to daisy-looper/leds.h diff --git a/src/lfo.h b/daisy-looper/lfo.h similarity index 100% rename from src/lfo.h rename to daisy-looper/lfo.h diff --git a/src/looper.h b/daisy-looper/looper.h similarity index 100% rename from src/looper.h rename to daisy-looper/looper.h diff --git a/src/luts.h b/daisy-looper/luts.h similarity index 100% rename from src/luts.h rename to daisy-looper/luts.h diff --git a/src/potentiometers.h b/daisy-looper/potentiometers.h similarity index 100% rename from src/potentiometers.h rename to daisy-looper/potentiometers.h diff --git a/src/ui.h b/daisy-looper/ui.h similarity index 100% rename from src/ui.h rename to daisy-looper/ui.h diff --git a/src/.~lock.menu.ods# b/src/.~lock.menu.ods# deleted file mode 100644 index 3e896df..0000000 --- a/src/.~lock.menu.ods# +++ /dev/null @@ -1 +0,0 @@ -,d0,t,02.02.2024 17:44,file:///home/d0/.config/libreoffice/4; \ No newline at end of file -- GitLab