https://github.com/outofambit/easy-neopixels
NeoPixels! but easier. Beginner friendly functions to control Adafruit NeoPixels, using as simple syntax as possible.
https://github.com/outofambit/easy-neopixels
adafruit-neopixel arduino arduino-library beginner-friendly flora neopixel neopixels
Last synced: about 1 month ago
JSON representation
NeoPixels! but easier. Beginner friendly functions to control Adafruit NeoPixels, using as simple syntax as possible.
- Host: GitHub
- URL: https://github.com/outofambit/easy-neopixels
- Owner: outofambit
- Created: 2017-04-10T00:08:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-11-14T05:01:16.000Z (over 3 years ago)
- Last Synced: 2025-03-17T23:40:39.091Z (about 1 month ago)
- Topics: adafruit-neopixel, arduino, arduino-library, beginner-friendly, flora, neopixel, neopixels
- Language: C
- Homepage:
- Size: 16.6 KB
- Stars: 32
- Watchers: 5
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Easy NeoPixels Library
Makes it easy to use Neopixels with just a few simple commands!
No knowledge of functions, objects, or variables required.
It's as easy as:
```c
setupEasyNeoPixels(13, 1); // attached to pin 13, 1 neopixel long
writeEasyNeoPixel(0, HIGH); // turn on the first neopixel
writeEasyNeoPixel(0, 255, 0, 255); // make the first neopixel purple (red + blue)
```## Examples
see `examples/` for a collection of arduino sketches that use this library
## A Note to Advanced Users
Please be aware this library pollutes the global namespace with a variable and a few functions. 😄