19 #ifndef ADAFRUIT_NEOPIXEL_H
20 #define ADAFRUIT_NEOPIXEL_H
26 #include <pins_arduino.h>
30 #define NEO_RGB 0x00 // Wired for RGB data order
31 #define NEO_GRB 0x01 // Wired for GRB data order
34 #define NEO_COLMASK 0x01
35 #define NEO_KHZ800 0x02 // 800 KHz datastream
36 #define NEO_SPDMASK 0x02
40 #ifndef __AVR_ATtiny85__
41 #define NEO_KHZ400 0x00 // 400 KHz datastream
56 setPixelColor(uint16_t n, uint8_t r, uint8_t g, uint8_t b),
57 setPixelColor(uint16_t n, uint32_t c),
58 setBrightness(uint8_t);
60 *getPixels(
void)
const;
62 numPixels(
void)
const;
64 Color(uint8_t r, uint8_t g, uint8_t b);
66 getPixelColor(uint16_t n)
const;
85 const volatile uint8_t
93 #endif // ADAFRUIT_NEOPIXEL_H
Definition: Adafruit_NeoPixel.h:44