Skip to content

Commit 2498d26

Browse files
authored
Update username
1 parent c0ca6fe commit 2498d26

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
LinkedList \
3030
WebSockets \
3131
https://github.com/tzapu/WiFiManager \
32-
https://github.com/stnkl/ESPEssentials
32+
https://github.com/srwi/ESPEssentials
3333
- name: Create main file
3434
run: |
3535
echo "#include <Arduino.h>" >> main.ino

.github/workflows/build_examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ jobs:
3333
LinkedList \
3434
WebSockets \
3535
https://github.com/tzapu/WiFiManager \
36-
https://github.com/stnkl/ESPEssentials \
37-
https://github.com/stnkl/FastLEDHub
36+
https://github.com/srwi/ESPEssentials \
37+
https://github.com/srwi/FastLEDHub
3838
- name: Run PlatformIO examples
3939
run: pio ci --board=${{ matrix.board }}
4040
env:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
![ESP8266](https://img.shields.io/badge/ESP-8266-000000.svg?colorB=blue)
44
![ESP32](https://img.shields.io/badge/ESP-32-000000.svg?colorB=blue)
55
[![arduino-library-badge](https://www.ardu-badge.com/badge/FastLEDHub.svg?)](https://www.ardu-badge.com/FastLEDHub)
6-
[![LGPL-2.1 license](https://img.shields.io/github/license/stnkl/FastLEDHub)](https://github.com/stnkl/FastLEDHub/blob/master/LICENSE)
6+
[![LGPL-2.1 license](https://img.shields.io/github/license/srwi/FastLEDHub)](https://github.com/srwi/FastLEDHub/blob/master/LICENSE)
77

88
FastLEDHub allows you to manage all of your [FastLED]([FastLED](https://github.com/FastLED/FastLED)) sketches on the ESP8266 and ESP32 with minimal changes to your existing code. It requires little knowledge about the ESP8266/ESP32 platform making it an ideal playground for beginners getting started with FastLED animations.
99

@@ -42,7 +42,7 @@ FastLEDHub allows you to manage all of your [FastLED]([FastLED](https://github.c
4242
### Manual Installation
4343

4444
1. Make sure you have installed the dependencies above
45-
2. Download the desired version from the [releases](https://github.com/stnkl/FastLEDHub/releases) page
45+
2. Download the desired version from the [releases](https://github.com/srwi/FastLEDHub/releases) page
4646
3. Extract the contents of the downloaded zip file
4747
4. Rename the extracted folder to `FastLEDHub`
4848
5. Move this folder to your libraries directory `~/Arduino/libraries`)
@@ -52,7 +52,7 @@ FastLEDHub allows you to manage all of your [FastLED]([FastLED](https://github.c
5252

5353
```bash
5454
cd ~/Arduino/libraries
55-
git clone https://github.com/stnkl/FastLEDHub.git
55+
git clone https://github.com/srwi/FastLEDHub.git
5656
```
5757

5858
To update to the latest version of the library
@@ -220,7 +220,7 @@ Similarly the sunset feature will fade in an animation as soon as the sun sets a
220220

221221
### Audio spectrum data
222222

223-
[FastLEDHub-AudioViz](https://github.com/stnkl/FastLEDHub_AudioViz) allows you to send audio spectrum data from a Windows audio device to your ESP32/ESP8266. The transmitted data consists of 16 bins corresponding to different frequency ranges in the audio spectrum. Data is transmitted via a websocket connection and can be used by accessing the `FastLEDHub.spectrumData` array from within your animation:
223+
[FastLEDHub-AudioViz](https://github.com/srwi/FastLEDHub_AudioViz) allows you to send audio spectrum data from a Windows audio device to your ESP32/ESP8266. The transmitted data consists of 16 bins corresponding to different frequency ranges in the audio spectrum. Data is transmitted via a websocket connection and can be used by accessing the `FastLEDHub.spectrumData` array from within your animation:
224224

225225
```cpp
226226
uint8_t lowFrequencies = FastLEDHub.spectrumData[0];

examples/Spectrogram/Animations/Spectrogram.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
// This example requires the use of https://github.com/stnkl/FastLEDHub_AudioViz to send
3+
// This example requires the use of https://github.com/srwi/FastLEDHub_AudioViz to send
44
// spectrum data to the ESP32/ESP8266 running FastLEDHub.
55

66
#include <FastLEDHub.h>

library.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"repository":
55
{
66
"type": "git",
7-
"url": "https://github.com/stnkl/FastLEDHub.git"
7+
"url": "https://github.com/srwi/FastLEDHub.git"
88
},
99
"frameworks": "arduino",
1010
"platforms": [
@@ -15,7 +15,7 @@
1515
{
1616
"name": "Stephan Rumswinkel",
1717
"maintainer": true,
18-
"url": "https://github.com/stnkl"
18+
"url": "https://github.com/srwi"
1919
},
2020
"version": "2.1.2"
2121
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author=Stephan Rumswinkel
44
maintainer=Stephan Rumswinkel
55
sentence=Control multiple FastLED lightstrip animations on the ESP8266 and ESP32 without reuploading.
66
paragraph=FastLEDHub allows you to manage all of your FastLED sketches on the ESP8266 and ESP32 with minimal changes to your existing code. It requires little knowledge about the ESP8266/ESP32 platform making in an ideal playground for beginners getting started with FastLED animations.
7-
url=https://github.com/stnkl/FastLEDHub.git
7+
url=https://github.com/srwi/FastLEDHub.git
88
category=Display
99
architectures=esp8266,esp32
1010
depends=WiFiManager,ESPEssentials,ArduinoJson,LinkedList,FastLED,WebSockets

0 commit comments

Comments
 (0)