NeoRgbww80Feature (#768)

This commit is contained in:
Michael Miller
2024-02-10 20:41:32 -08:00
committed by GitHub
parent 0320ae01f9
commit 3119b8a7df
2 changed files with 40 additions and 0 deletions

View File

@ -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"

View File

@ -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
<http://www.gnu.org/licenses/>.
-------------------------------------------------------------------------*/
#pragma once
class NeoRgbwc80Feature :
public Neo5WordFeature<ColorIndexR, ColorIndexG, ColorIndexB, ColorIndexWW, ColorIndexCW>,
public NeoElementsNoSettings
{
};
class NeoRbgcw80Feature :
public Neo5WordFeature<ColorIndexR, ColorIndexB, ColorIndexG, ColorIndexCW, ColorIndexWW>,
public NeoElementsNoSettings
{
};