Skip to content

Commit d773051

Browse files
committed
Version 1.0.0
1 parent b255318 commit d773051

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.vscode/settings.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"spellright.language": [
3+
"de"
4+
],
5+
"spellright.documentTypes": [
6+
"latex"
7+
]
8+
}

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ FastLEDHub allows you to manage all of your [FastLED]([FastLED](https://github.c
99

1010
- Control multiple animations via an intuitive web interface
1111
- Adjust brightness and animation speed globally
12-
- Define color pickers to use as parameters for your animations
13-
- Define custom numeric sliders to parameterize your animations
12+
- Add widgets like color pickers or sliders to control complex animations
1413
- Alarm: Be woken up to an animation slowly fading in
1514
- Sunset: Automatically fade in an animation when the sun sets at your location
1615
- Control animations and brightness using hardware inputs
@@ -132,7 +131,7 @@ Keep in mind the following important differences to just using FastLED:
132131
- Within your animation use `FastLEDHub[0].size()` instead of `NUM_LEDS` to get the number of leds. If you are using multiple lightstrips change the index accordingly.
133132
- Every time you may want to use `FastLED` use `FastLEDHub` instead. Since `FastLEDHub` inherits from `FastLED` all member functions will be available just like before. FastLEDHub just adds some stuff on top of that.
134133

135-
If you want to convert an existing FastLED sketch (e.g. from [atuline/FastLED-Demos](https://github.com/atuline/FastLED-Demos)), so it can be handled by FastLEDHub, generally those are the necessary changes you have to perform.
134+
If you want to convert an existing FastLED sketch (e.g. from [atuline/FastLED-Demos](https://github.com/atuline/FastLED-Demos)), so it can be handled by FastLEDHub, generally those are the necessary changes you have to perform. Have a look at the examples for further insights.
136135

137136
### Registering animations
138137

@@ -223,10 +222,6 @@ Most functions can be triggered via HTTP requests:
223222
- Trigger alarm: `http://<device-ip>/alarm`
224223
- Reset ESP8266: `http://<device-ip>/reboot`
225224

226-
```cpp
227-
FastLEDHub.initialize("Project Name", true);
228-
```
229-
230225
## License & Attribution
231226

232227
FastLEDHub is licensed under LGPL-2.1 and uses the [sunrise-sunset.org](https://sunrise-sunset.org/api) api to retrieve sunset times.

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"maintainer": true,
1515
"url": "https://github.com/stnkl"
1616
},
17-
"version": "0.9.0"
17+
"version": "1.0.0"
1818
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FastLEDHub
2-
version=0.9.0
2+
version=1.0.0
33
author=Stephan Rumswinkel
44
maintainer=Stephan Rumswinkel
55
sentence=Control multiple FastLED lightstrip animations on the ESP8266 without reuploading.

0 commit comments

Comments
 (0)