Skip to content

Commit

Permalink
functional (#643)
Browse files Browse the repository at this point in the history
  • Loading branch information
Makuna authored Feb 8, 2023
1 parent 7822ea9 commit fff81b9
Show file tree
Hide file tree
Showing 5 changed files with 256 additions and 91 deletions.
87 changes: 0 additions & 87 deletions examples/NeoPixelBrightness/NeoPixelBrightness.ino

This file was deleted.

105 changes: 105 additions & 0 deletions examples/NeoPixelBusLg/NeoPixelBusLg.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
// NeoPixelBusLg
//
// This example demonstrates the use of the NeoPixelBusLg
// with integrated luminance and gamma support
//
// There is serial output of the current state so you can
// confirm and follow along
//

#include <NeoPixelBusLg.h> // instead of NeoPixelBus.h

const uint16_t PixelCount = 96; // set to the number of pixels in your strip
const uint8_t PixelPin = 14; // make sure to set this to the correct pin, ignored for Esp8266

RgbColor red(255, 0, 0);
RgbColor green(0, 255, 0);
RgbColor blue(0, 0, 255);
RgbColor black(0, 0, 0);
RgbColor white(255, 255, 255);

// Make sure to provide the correct color order feature
// for your NeoPixels
NeoPixelBusLg<NeoRgbFeature, NeoWs2812xMethod> strip(PixelCount, PixelPin);

// If speed is an issue and memory is not, then you can use the gama table variant
// which is much faster but uses 256 bytes of RAM
// NeoPixelBusLg<NeoRgbFeature, NeoWs2812xMethod, NeoGammaTableMethod> strip(PixelCount, PixelPin);

// If you want to turn gama correction off, then you can use the null gama method
// NeoPixelBusLg<NeoRgbFeature, NeoWs2812xMethod, NeoGammaNullMethod> strip(PixelCount, PixelPin);

void setup()
{
Serial.begin(115200);
while (!Serial); // wait for serial attach

Serial.println();
Serial.println("Initializing...");
Serial.flush();

// this resets all the neopixels to an off state
strip.Begin();
strip.SetLuminance(128); // (0-255) - initially at half brightness
strip.Show();

Serial.println();
Serial.println("Running...");
}

void loop()
{
static const uint8_t c_MinBrightness = 0;
static const uint8_t c_MaxBrightness = 255;

static int8_t direction = -1; // start with dimming

uint8_t luminance = strip.GetLuminance();

Serial.print(direction);
Serial.print(" ");
Serial.println(luminance);

delay(200);

// swap direction of luminance when limits are reached
//
if (direction < 0 && luminance <= c_MinBrightness)
{
direction = 1;
}
else if (direction > 0 && luminance >= c_MaxBrightness)
{
direction = -1;
}
else
{
luminance += direction;
}

strip.SetLuminance(luminance);

// draw something
//
uint16_t half = strip.PixelCount() / 2;
DrawGradiant(green, black, 0, half - 1);
DrawGradiant(black, red, half, strip.PixelCount() - 1);

// show the results
strip.Show();
}

void DrawGradiant(RgbColor startColor,
RgbColor finishColor,
uint16_t startIndex,
uint16_t finishIndex)
{
uint16_t delta = finishIndex - startIndex;

for (uint16_t index = startIndex; index < finishIndex; index++)
{
float progress = static_cast<float>(index - startIndex) / delta;
RgbColor color = RgbColor::LinearBlend(startColor, finishColor, progress);
strip.SetPixelColor(index, color);
}
}
4 changes: 4 additions & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#######################################

NeoPixelBus KEYWORD1
NeoPixelBusLg KEYWORD1
NeoPixelSegmentBus KEYWORD1
RgbwColor KEYWORD1
RgbColor KEYWORD1
Expand Down Expand Up @@ -760,6 +761,9 @@ PixelCount KEYWORD2
SetPixelColor KEYWORD2
GetPixelColor KEYWORD2
SwapPixelColor KEYWORD2
SetLuminance KEYWORD2
GetLuminance KEYWORD2
ApplyPostAdjustments KEYWORD2
SetString KEYWORD2
CalculateBrightness KEYWORD2
Dim KEYWORD2
Expand Down
130 changes: 130 additions & 0 deletions src/NeoPixelBusLg.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
/*-------------------------------------------------------------------------
NeoPixelBus library wrapper template class that provides luminance and gamma control
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

#include "NeoPixelBus.h"

template<typename T_COLOR_FEATURE, typename T_METHOD, typename T_GAMMA = NeoGammaEquationMethod> class NeoPixelBusLg :
public NeoPixelBus<T_COLOR_FEATURE, T_METHOD>
{
private:
typename T_COLOR_FEATURE::ColorObject ConvertColor(typename T_COLOR_FEATURE::ColorObject color)
{
// dim and then return gamma adjusted
color = color.Dim(_luminance);
return NeoGamma<T_GAMMA>::Correct(color);
}

public:
NeoPixelBusLg(uint16_t countPixels, uint8_t pin) :
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>(countPixels, pin),
_luminance(255)
{
}

NeoPixelBusLg(uint16_t countPixels, uint8_t pin, NeoBusChannel channel) :
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>(countPixels, pin, channel),
_luminance(255)
{
}

NeoPixelBusLg(uint16_t countPixels, uint8_t pinClock, uint8_t pinData) :
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>(countPixels, pinClock, pinData),
_luminance(255)
{
}

NeoPixelBusLg(uint16_t countPixels, uint8_t pinClock, uint8_t pinData, uint8_t pinLatch, uint8_t pinOutputEnable = NOT_A_PIN) :
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>(countPixels, pinClock, pinData, pinLatch, pinOutputEnable),
_luminance(255)
{
}

NeoPixelBusLg(uint16_t countPixels) :
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>(countPixels),
_luminance(255)
{
}

void SetLuminance(uint8_t luminance)
{
// does NOT affect current pixel data as there is no safe way
// to reconstruct the original color values after being
// modified with both luminance and gama without storing them
_luminance = luminance;
}

uint8_t GetLuminance() const
{
return _luminance;
}

void SetPixelColor(uint16_t indexPixel, typename T_COLOR_FEATURE::ColorObject color)
{
color = ConvertColor(color);
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>::SetPixelColor(indexPixel, color);
}

/*
GetPixelColor is not overloaded as the original will be used
to just return the fully adjusted color value directly with
no reverse conversion since it is fraught with inaccuracy
*/

void ClearTo(typename T_COLOR_FEATURE::ColorObject color)
{
color = ConvertColor(color);
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>::ClearTo(color);
};

void ClearTo(typename T_COLOR_FEATURE::ColorObject color, uint16_t first, uint16_t last)
{
color = ConvertColor(color);
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>::ClearTo(color, first, last);
}

// if the Pixels buffer is manipulated directly, then this can be called
// to apply the luminance and gamma correction to those changes
void ApplyPostAdjustments()
{
if (this->IsDirty())
{
for (uint16_t indexPixel = 0; indexPixel < NeoPixelBus<T_COLOR_FEATURE, T_METHOD>::PixelCount(); indexPixel++)
{
typename T_COLOR_FEATURE::ColorObject color = NeoPixelBus<T_COLOR_FEATURE, T_METHOD>::GetPixelColor(indexPixel);
color = ConvertColor(color);
NeoPixelBus<T_COLOR_FEATURE, T_METHOD>::SetPixelColor(indexPixel, color);
}
this->Dirty();
}
}

protected:
uint8_t _luminance;
};


21 changes: 17 additions & 4 deletions src/internal/NeoGamma.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,34 +60,47 @@ class NeoGammaTableMethod
static const uint8_t _table[256];
};

// no gamma correction at all
class NeoGammaNullMethod
{
public:
static uint8_t Correct(uint8_t value)
{
return value;
}
static uint16_t Correct(uint16_t value)
{
return value;
}
};

// use one of the method classes above as a converter for this template class
template<typename T_METHOD> class NeoGamma
{
public:
RgbColor Correct(const RgbColor& original)
static RgbColor Correct(const RgbColor& original)
{
return RgbColor(T_METHOD::Correct(original.R),
T_METHOD::Correct(original.G),
T_METHOD::Correct(original.B));
}

RgbwColor Correct(const RgbwColor& original)
static RgbwColor Correct(const RgbwColor& original)
{
return RgbwColor(T_METHOD::Correct(original.R),
T_METHOD::Correct(original.G),
T_METHOD::Correct(original.B),
T_METHOD::Correct(original.W) );
}

Rgb48Color Correct(const Rgb48Color& original)
static Rgb48Color Correct(const Rgb48Color& original)
{
return Rgb48Color(T_METHOD::Correct(original.R),
T_METHOD::Correct(original.G),
T_METHOD::Correct(original.B));
}

Rgbw64Color Correct(const Rgbw64Color& original)
static Rgbw64Color Correct(const Rgbw64Color& original)
{
return Rgbw64Color(T_METHOD::Correct(original.R),
T_METHOD::Correct(original.G),
Expand Down

0 comments on commit fff81b9

Please sign in to comment.