forked from Makuna/NeoPixelBus
NeoRgbww80Feature (#768)
This commit is contained in:
@ -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"
|
||||
|
39
src/internal/features/NeoRgbww80Features.h
Normal file
39
src/internal/features/NeoRgbww80Features.h
Normal 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
|
||||
{
|
||||
};
|
Reference in New Issue
Block a user