From d4f19e979d064c9e0ca6f3a66e3cf67f0ee765bb Mon Sep 17 00:00:00 2001 From: Jochen Vothknecht <jochen3120@gmail.com> Date: Sat, 23 Apr 2022 19:27:23 +0200 Subject: [PATCH] Begin implementing protocols --- CLC-qthing/SiliconTorch/FxCyanRGB8.cpp | 30 ++++++++++++++++++++++ CLC-qthing/SiliconTorch/FxCyanRGB8.hpp | 35 ++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 CLC-qthing/SiliconTorch/FxCyanRGB8.cpp create mode 100644 CLC-qthing/SiliconTorch/FxCyanRGB8.hpp diff --git a/CLC-qthing/SiliconTorch/FxCyanRGB8.cpp b/CLC-qthing/SiliconTorch/FxCyanRGB8.cpp new file mode 100644 index 0000000..640001d --- /dev/null +++ b/CLC-qthing/SiliconTorch/FxCyanRGB8.cpp @@ -0,0 +1,30 @@ +#include "FxCyanRGB8.hpp" + +// C++ system level +#include <string> +#include <cinttypes> +#include <functional> + +// ESP32 specific +// #include "freertos/FreeRTOS.h" +// #include "freertos/queue.h" + +// project specific +// #include "LambdaTask.hpp" + +// qthing stuff +// #include "" + + + +namespace SiliconTorch { + + namespace FxCyanRGB8 { + + + FxCyanRGB8::FxCyanRGB8() { + } + + + } +} diff --git a/CLC-qthing/SiliconTorch/FxCyanRGB8.hpp b/CLC-qthing/SiliconTorch/FxCyanRGB8.hpp new file mode 100644 index 0000000..691604f --- /dev/null +++ b/CLC-qthing/SiliconTorch/FxCyanRGB8.hpp @@ -0,0 +1,35 @@ +#pragma once + +// C++ system level +#include <string> +#include <cinttypes> +#include <functional> + +// ESP32 specific +// #include "freertos/FreeRTOS.h" +// #include "freertos/queue.h" + +// project specific +// #include "LambdaTask.hpp" + +// qthing stuff +// #include "" + + + +namespace SiliconTorch { + + namespace FxCyanRGB8 { + + + class FxCyanRGB8 { + public: + FxCyanRGB8(); + + private: + + + + }; + } +} -- GitLab