From 5c6008c4917a219c1717ec937eec541e85fdbc85 Mon Sep 17 00:00:00 2001 From: MatthewColvin Date: Sat, 16 Sep 2023 12:45:12 -0500 Subject: [PATCH] Add UI abstract and move some files into a basic folder --- Platformio/OmoteUI/{ => UIs/Basic}/OmoteUI.cpp | 0 Platformio/OmoteUI/{ => UIs/Basic}/OmoteUI.hpp | 0 Platformio/OmoteUI/{ => UIs/Basic}/displaySettings.cpp | 0 Platformio/OmoteUI/{ => UIs/Basic}/wifiSettings.cpp | 0 Platformio/OmoteUI/{ => UIs}/Images.cpp | 0 Platformio/OmoteUI/{ => UIs}/Images.hpp | 0 Platformio/OmoteUI/UIs/UIAbstract.cpp | 0 Platformio/OmoteUI/UIs/UIAbstract.hpp | 10 ++++++++++ Platformio/platformio.ini | 2 ++ 9 files changed, 12 insertions(+) rename Platformio/OmoteUI/{ => UIs/Basic}/OmoteUI.cpp (100%) rename Platformio/OmoteUI/{ => UIs/Basic}/OmoteUI.hpp (100%) rename Platformio/OmoteUI/{ => UIs/Basic}/displaySettings.cpp (100%) rename Platformio/OmoteUI/{ => UIs/Basic}/wifiSettings.cpp (100%) rename Platformio/OmoteUI/{ => UIs}/Images.cpp (100%) rename Platformio/OmoteUI/{ => UIs}/Images.hpp (100%) create mode 100644 Platformio/OmoteUI/UIs/UIAbstract.cpp create mode 100644 Platformio/OmoteUI/UIs/UIAbstract.hpp diff --git a/Platformio/OmoteUI/OmoteUI.cpp b/Platformio/OmoteUI/UIs/Basic/OmoteUI.cpp similarity index 100% rename from Platformio/OmoteUI/OmoteUI.cpp rename to Platformio/OmoteUI/UIs/Basic/OmoteUI.cpp diff --git a/Platformio/OmoteUI/OmoteUI.hpp b/Platformio/OmoteUI/UIs/Basic/OmoteUI.hpp similarity index 100% rename from Platformio/OmoteUI/OmoteUI.hpp rename to Platformio/OmoteUI/UIs/Basic/OmoteUI.hpp diff --git a/Platformio/OmoteUI/displaySettings.cpp b/Platformio/OmoteUI/UIs/Basic/displaySettings.cpp similarity index 100% rename from Platformio/OmoteUI/displaySettings.cpp rename to Platformio/OmoteUI/UIs/Basic/displaySettings.cpp diff --git a/Platformio/OmoteUI/wifiSettings.cpp b/Platformio/OmoteUI/UIs/Basic/wifiSettings.cpp similarity index 100% rename from Platformio/OmoteUI/wifiSettings.cpp rename to Platformio/OmoteUI/UIs/Basic/wifiSettings.cpp diff --git a/Platformio/OmoteUI/Images.cpp b/Platformio/OmoteUI/UIs/Images.cpp similarity index 100% rename from Platformio/OmoteUI/Images.cpp rename to Platformio/OmoteUI/UIs/Images.cpp diff --git a/Platformio/OmoteUI/Images.hpp b/Platformio/OmoteUI/UIs/Images.hpp similarity index 100% rename from Platformio/OmoteUI/Images.hpp rename to Platformio/OmoteUI/UIs/Images.hpp diff --git a/Platformio/OmoteUI/UIs/UIAbstract.cpp b/Platformio/OmoteUI/UIs/UIAbstract.cpp new file mode 100644 index 0000000..e69de29 diff --git a/Platformio/OmoteUI/UIs/UIAbstract.hpp b/Platformio/OmoteUI/UIs/UIAbstract.hpp new file mode 100644 index 0000000..5133a06 --- /dev/null +++ b/Platformio/OmoteUI/UIs/UIAbstract.hpp @@ -0,0 +1,10 @@ +// OMOTE UI +// 2023 Matthew Colvin + +#pragma once + +class UIAbstract{ + + UIAbstract(); + +}; \ No newline at end of file diff --git a/Platformio/platformio.ini b/Platformio/platformio.ini index 8a81064..45bd512 100644 --- a/Platformio/platformio.ini +++ b/Platformio/platformio.ini @@ -40,6 +40,8 @@ build_flags = ; ------------- Includes ------------------------------------ -I OmoteUI -I OmoteUI/core + -I OmoteUI/UIs + -I OmoteUI/UIs/Basic -I HAL -I HAL/HardwareModules