Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phptuts/fastled-animator
Create simple rgb led light animations without code.
https://github.com/phptuts/fastled-animator
arduino fastled
Last synced: 2 months ago
JSON representation
Create simple rgb led light animations without code.
- Host: GitHub
- URL: https://github.com/phptuts/fastled-animator
- Owner: phptuts
- License: gpl-3.0
- Created: 2022-05-13T05:27:19.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-18T06:47:33.000Z (about 2 years ago)
- Last Synced: 2024-10-14T06:13:34.766Z (3 months ago)
- Topics: arduino, fastled
- Language: JavaScript
- Homepage: https://www.fastledanimator.com/
- Size: 559 KB
- Stars: 24
- Watchers: 2
- Forks: 4
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FastLED Animator
My mission is to empower noncoders to make art with RGB-led light strips. Not knowing how to code should not stop you from creating. I want to enable artists, hobbyists, and the curious to build amazing things. If you have any feedback or use cases, please email me at glaserpower [] gmail.com.
## Thank You
The code used to run the rgb LEDs on the Arduino is [fastled](https://fastled.io/). It's a free, open-source project. I would not have been able to build the website without them. Thank you [focalintent](https://github.com/focalintent) and [kriegsman](https://github.com/kriegsman) for this making possible!
## Future LED Object
```js
const frame = {
// [1,2,4] are the leds that will be colored "#00AA00"
colors: [{"#00AA00": [1,2,4], "#AA0000": [3,5]}],
// These are the selected leds
selected: [1,2,3]
}
```