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,18 @@
/// @file dither_mode.h
/// Declares dithering options and types
#pragma once
#include "fl/stdint.h"
#include "fl/int.h"
#include "fl/namespace.h"
/// Disable dithering
#define DISABLE_DITHER 0x00
/// Enable dithering using binary dithering (only option)
#define BINARY_DITHER 0x01
/// The dither setting, either DISABLE_DITHER or BINARY_DITHER
FASTLED_NAMESPACE_BEGIN
typedef fl::u8 EDitherMode;
FASTLED_NAMESPACE_END