mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-15 10:32:44 +01:00
28 lines
740 B
Plaintext
28 lines
740 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_ARCH_AVR8 || HAS_ARCH_ESP32 || HAS_ARCH_NATIVE
|
||
|
depends on TEST_KCONFIG
|
||
|
select MODULE_XTIMER
|
||
|
select MODULE_WS281X_ATMEGA if HAS_ARCH_AVR8
|
||
|
select MODULE_WS281X_VT100 if HAS_ARCH_NATIVE
|
||
|
select MODULE_WS281X_ESP32 if HAS_ARCH_ESP32
|
||
|
|
||
|
config MODULE_WS281X_ATMEGA
|
||
|
bool
|
||
|
depends on HAS_ARCH_AVR8
|
||
|
|
||
|
config MODULE_WS281X_VT100
|
||
|
bool
|
||
|
depends on HAS_ARCH_NATIVE
|
||
|
|
||
|
config MODULE_WS281X_ESP32
|
||
|
bool
|
||
|
depends on HAS_ARCH_ESP32
|