initial commit

This commit is contained in:
2026-02-12 00:45:31 -08:00
commit 5f168f370b
3024 changed files with 804889 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
/// @file rgbw.h
/// Functions for red, green, blue, white (RGBW) output
#pragma once
#include "fl/rgbw.h"
// Since FastLED 3.10.3 the RGBW functions are in the fl namespace.
// This file is a compatibility layer to allow the old functions to be used.
// It is not necessary to include this file if you are using FastLED 3.10.3 or later.
using fl::Rgbw;
using fl::RgbwInvalid;
using fl::RgbwDefault;
using fl::RgbwWhiteIsOff;
using fl::RGBW_MODE;
using fl::kRGBWDefaultColorTemp;
using fl::kRGBWInvalid;
using fl::kRGBWNullWhitePixel;
using fl::kRGBWExactColors;
using fl::kRGBWBoostedWhite;
using fl::kRGBWMaxBrightness;
using fl::kRGBWUserFunction;