From 3119b8a7dfbea19b826048f3403235de04deb6c0 Mon Sep 17 00:00:00 2001 From: Michael Miller Date: Sat, 10 Feb 2024 20:41:32 -0800 Subject: [PATCH] NeoRgbww80Feature (#768) --- src/internal/NeoColorFeatures.h | 1 + src/internal/features/NeoRgbww80Features.h | 39 ++++++++++++++++++++++ 2 files changed, 40 insertions(+) create mode 100644 src/internal/features/NeoRgbww80Features.h diff --git a/src/internal/NeoColorFeatures.h b/src/internal/NeoColorFeatures.h index c5d8e65..4795aee 100644 --- a/src/internal/NeoColorFeatures.h +++ b/src/internal/NeoColorFeatures.h @@ -53,6 +53,7 @@ License along with NeoPixel. If not, see #include "features/NeoRgbwwFeatures.h" #include "features/NeoRgb48Features.h" #include "features/NeoRgbw64Features.h" +#include "features/NeoRgbww80Features.h" #include "features/NeoRgbwxxFeatures.h" #include "features/NeoRgbcwxFeatures.h" diff --git a/src/internal/features/NeoRgbww80Features.h b/src/internal/features/NeoRgbww80Features.h new file mode 100644 index 0000000..a736548 --- /dev/null +++ b/src/internal/features/NeoRgbww80Features.h @@ -0,0 +1,39 @@ +/*------------------------------------------------------------------------- +NeoRgbww80Feature provides feature classes to describe color order and +color depth for NeoPixelBus template class + +Written by Michael C. Miller. + +I invest time and resources providing this open source code, +please support me by dontating (see https://github.com/Makuna/NeoPixelBus) + +------------------------------------------------------------------------- +This file is part of the Makuna/NeoPixelBus library. + +NeoPixelBus is free software: you can redistribute it and/or modify +it under the terms of the GNU Lesser General Public License as +published by the Free Software Foundation, either version 3 of +the License, or (at your option) any later version. + +NeoPixelBus is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with NeoPixel. If not, see +. +-------------------------------------------------------------------------*/ +#pragma once + +class NeoRgbwc80Feature : + public Neo5WordFeature, + public NeoElementsNoSettings +{ +}; + +class NeoRbgcw80Feature : + public Neo5WordFeature, + public NeoElementsNoSettings +{ +};