Skip to content

Commit 5c46378

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 7150794 + 823ca07 commit 5c46378

34 files changed

Lines changed: 396 additions & 44 deletions

docs/about/contributors.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ adamo made the animated Discord server logo!
1515
[@blazoncek](https://github.com/blazoncek) makes countless new features and improvements to many parts of WLED!
1616
[@debsahu](https://github.com/debsahu) provided the HomeAssistant autodiscovery and a lot of help with PIO!
1717
[@ewowi](https://github.com/ewoudwijma) numerous optimizations; 2D, audio and various user mod improvements. MoonModules maintainer.
18-
[@frenck](https://github.com/frenck) made an amazing, stable and feature-packed native integration with HomeAssistant!
19-
[@Moustachauve](https://github.com/Moustachauve) added palette visualisation and developped the WLED Native app for Android and iOS!
18+
[@frenck](https://github.com/frenck) made an amazing, stable and feature-packed native integration with HomeAssistant!
19+
[@Moustachauve](https://github.com/Moustachauve) added palette visualisation and developped the WLED Native app for Android and iOS!
2020
[@pbolduc](https://github.com/pbolduc) DDP UDP synchronization, UI improvements and user mods.
2121
[@photocromax](https://github.com/photocromax) helped bring the Live visualization feature to life.
2222
[@raymiec](https://github.com/raymiec) is currently working on creating the best clients for Android and iOS!
@@ -28,6 +28,7 @@ adamo made the animated Discord server logo!
2828
[@wiesendaniel](https://github.com/wiesendaniel) added the configuration for the PlatformIO IDE!
2929
[@YeonV](https://github.com/YeonV) provided the initial HomeAssistant MQTT light config!
3030
[@werkstrom](https://github.com/werkstrom) added PixelArt converter
31+
[@netmindz](https://github.com/netmindz) Freqency based Audio Reactive effects and Audio Reactive Color Palettes. MoonModules maintainer. WLED Release Manager
3132

3233
_This list is incomplete._
3334

docs/advanced/audio-reactive.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ hide:
77

88
## What is Audio Reactive WLED?
99

10-
Audio Reactive WLED is a possibility of using WLED controllers in such a way that the LEDs react to music and light up in time. First time this was implemented by a [Sound Reactive Fork](https://github.com/atuline/WLED). As of WLED version 0.14.0-beta1 an usermod is available for original WLED too.
11-
Currently only ESP32 microcontrollers are supported.
10+
Audio Reactive WLED is a possibility of using WLED controllers in such a way that the LEDs react to music and light up in time. First time this was implemented by a [Sound Reactive Fork](https://github.com/atuline/WLED). As of WLED version 0.14.0-beta1 an usermod is available for original WLED too. Since version 0.15.0 this usermod is included in the official WLED releases.
1211

1312
## Hardware required
1413

@@ -63,11 +62,12 @@ An example board with integrated Line-In is the [LyraT](https://docs.espressif.c
6362
For some more details please refer to [Sound Reactive WLED WIKI](https://mm.kno.wled.ge/soundreactive/introduction/)
6463

6564
### Audio Sync - WLED
66-
You do not need to include an audio input source in every WLED device to take advantage of the Audio Reactive effects. Simply set the sync mode to "send" on the device with the audio input and all the other devices set to "receive" for their sync mode in the Audio Reactive settings.
65+
You do not need to include an audio input source in every WLED device to take advantage of the Audio Reactive effects. Simply set the sync mode to "send" on the device with the audio input and all the other devices set to "receive" for their sync mode in the Audio Reactive settings.
66+
This only works if your network supports multicast.
6767

6868
### Audio Sync - WledSRServer
6969
For Windows, there is [WledSRServer](https://github.com/Victoare/SR-WLED-audio-server-win) which is a small application that can capture audio directly from your PC, process it into WLED Audio Sync data and send it out onto your network - emulating WLED in send mode. Configure all your WLED instances to receive.
7070

7171
## Software required
7272

73-
Because audio reactive capability is currently implemented as a usermod, you need WLED compiled with this usermod included. The [official WEB-based WLED installer](https://install.wled.me/) does not include original WLED with audio reactive usermod, but offers Sound Reactive WLED as an option. The [unofficial WEB-based WLED installer](https://wled-install.github.io/) offers more options including original WLED with audio reactive usermod.
73+
Because audio reactive capability is currently implemented as a usermod, you need WLED compiled with this usermod included. The [official WEB-based WLED installer](https://install.wled.me/) includes the usermod by default since version 0.15.0. The [unofficial WEB-based WLED installer](https://wled-install.github.io/) offers more options including original WLED with audio reactive usermod for older versions.

docs/advanced/compiling-wled.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@ hide:
77

88
You want to add custom features to WLED, use non-default pins, or add in a usermod? You've found the right place!
99

10-
WLED has come to rely on so many dependencies in the latest versions that building with the Arduino IDE is no longer recommended.
11-
Instead, installing Visual Studio Code and its PlatformIO (PIO) extension is easier, as it will install the ESP Arduino core, all the required libraries and the correct compilation settings for you automatically.
10+
WLED has come to rely on so many dependencies in the latest versions that building with Visual Studio Code and its PlatformIO (PIO) extension is the recommended way. It will install the ESP Arduino core, all the required libraries and the correct compilation settings for you automatically. The Arduino IDE is no longer recommended.
11+
12+
If you don't want to change the code but only add some compile options and/or usermods, you can use bot on discord or compile with just few clicks using [this inofficial web based wled compiler](https://wled-compile.github.io/). Using it you can download the resulting .bin file directly or install via USB using built-in web-based installer.
1213

1314
### Preparations
1415

docs/advanced/custom-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ hide:
66
---
77

88
!!! warning
9-
_Note: this page is now out of date, see updated functionality in the code ([WLED/usermods/EXAMPLE_v2](https://github.com/Aircoookie/WLED/tree/master/usermods/EXAMPLE_v2))_
9+
_Note: this page is now out of date, see updated functionality in the code ([WLED/usermods/EXAMPLE](https://github.com/wled/WLED/tree/main/usermods/EXAMPLE))_
1010

1111
This page is intended for those wishing to modify the WLED code to add their own functionality.
1212

21.9 KB
Loading
31 KB
Loading
53.5 KB
Loading
-4.97 KB
Loading
161 KB
Loading
174 KB
Loading

0 commit comments

Comments
 (0)