audio-reactive-led-strip/ws2812.h
not-matt eb163b6771
Add files via upload
Including pull request to use NeoPixelBus
2017-12-18 20:41:27 +00:00

18 lines
409 B
C

// ws2812.h
#ifndef __WS2812_H__
#define __WS2812_H__
// Temporal Dithering
// Dithering preserves color and light when brightness is low.
// Sometimes this can cause undesirable flickering.
// 1 = Disable temporal dithering
// 2, 6, 8 = Enable temporal dithering (larger values = more dithering)
#define WS2812_DITHER_NUM (8)
#define WS2812_USE_INTERRUPT (0) // not supported yet
#endif
// end of file