Files
NeoPixelBus/src/internal/features/Neo3Byte777Feature.h
T

45 lines
1.6 KiB
C++

/*-------------------------------------------------------------------------
Neo3Byte777Feature provides feature base class to describe color order for
3 byte features that only support 7 bits per element
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
template <uint8_t V_IC_1, uint8_t V_IC_2, uint8_t V_IC_3>
class Neo3Byte777Feature :
public NeoElementsBase<3, RgbColor>
{
public:
static void applyPixelColor(uint8_t* pixel, size_t pixelSize, ColorObject color)
{
if (PixelSize <= pixelSize)
{
uint8_t* p = pixel;
*p++ = (color[V_IC_1] >> 1) | 0x80;
*p++ = (color[V_IC_2] >> 1) | 0x80;
*p = (color[V_IC_3] >> 1) | 0x80;
}
}
};