mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
33 lines
860 B
Plaintext
33 lines
860 B
Plaintext
# Copyright (c) 2021 HAW Hamburg
|
|
#
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
# directory for more details.
|
|
#
|
|
|
|
config MODULE_WS281X
|
|
bool "WS2812/SK6812 RGB LED (NeoPixel)"
|
|
depends on HAS_CPU_CORE_ATMEGA || HAS_ARCH_ESP32 || HAS_ARCH_NATIVE
|
|
depends on TEST_KCONFIG
|
|
select MODULE_XTIMER
|
|
select MODULE_WS281X_ATMEGA if HAS_CPU_CORE_ATMEGA
|
|
select MODULE_WS281X_VT100 if HAS_ARCH_NATIVE
|
|
select MODULE_WS281X_ESP32 if HAS_ARCH_ESP32
|
|
|
|
config MODULE_WS281X_ATMEGA
|
|
bool
|
|
depends on HAS_CPU_CORE_ATMEGA
|
|
|
|
config MODULE_WS281X_VT100
|
|
bool
|
|
depends on HAS_ARCH_NATIVE
|
|
|
|
config MODULE_WS281X_ESP32
|
|
bool
|
|
depends on HAS_ARCH_ESP32
|
|
|
|
config HAVE_WS281X
|
|
bool
|
|
help
|
|
Indicates that a WS2812/SK6812 RGB LED sensor is present.
|