Skip to content

Commit

Permalink
Merge pull request #4 from outofambit/fix/examples-casing
Browse files Browse the repository at this point in the history
Fix casing in include for examples
  • Loading branch information
outofambit committed Nov 6, 2019
2 parents c0683c3 + e25ae2c commit db4d764
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 4 additions & 1 deletion examples/blink/blink.ino
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
/*
Blink a single Neopixel!
(Don't forget to install [Adafruit_NeoPixel](https://github.com/adafruit/Adafruit_NeoPixel) to use EasyNeoPixels.)
*/

#include <EasyNeopixels.h>
#include <EasyNeoPixels.h>

void setup() {
setupEasyNeoPixels(13, 1);
Expand Down
7 changes: 5 additions & 2 deletions examples/colorSequence/colorSequence.ino
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
/*
Colors on a single Neopixel!
Cycle through colors on a single Neopixel!
(Don't forget to install [Adafruit_NeoPixel](https://github.com/adafruit/Adafruit_NeoPixel) to use EasyNeoPixels.)
*/

#include <EasyNeopixels.h>
#include <EasyNeoPixels.h>

void setup() {
setupEasyNeoPixels(13, 1);
Expand Down

0 comments on commit db4d764

Please sign in to comment.