Lines changed now in upstream library

This commit is contained in:
Anagani Sai Kiran 2021-06-01 20:20:18 +05:30
parent 0cf5429a73
commit b1bbea3b5d
1 changed files with 5 additions and 3 deletions

View File

@ -85,9 +85,11 @@ Changing a single LED therefore only requires a packet of 2+4 bytes. All LEDs ma
The software now supports audio-reactive-led-strip!
1. Download [audio-reactive-led-strip](https://github.com/scottlawsonbc/audio-reactive-led-strip) and follow its installation instruction. You can also use my (untested) [fork](https://github.com/Aircoookie/audio-reactive-led-strip). In that case, you can skip step 2.
2. Insert the following code in led.py after line 66:
m.append(1);
m.append(2);
2. Insert the following code in led.py after line 72 after m = '' if _is_python_2 else []:
```
m.append(1)
m.append(2)
```
These are the first two bytes of the protocol.
3. In config.py set your led amount, ESP IP and WLED UDP notifier port. For FPS, a setting between 15-30 is recommended.
4. Run visualization.py! If you have a low amount of LEDS (e.g. 10) try lowering the sigma values in line 129-131.