CheeseBoard
A library for use with the CheeseBoard Cheddar platform
CbLeds.h
1 #pragma once
2 
3 #include <Adafruit_NeoPixel.h>
4 
21 class CbNeoPixel : public Adafruit_NeoPixel {
22 public:
32  CbNeoPixel(uint16_t n, uint8_t p=6, neoPixelType t=NEO_GRB+NEO_KHZ800);
33 
39  void show(void);
40 
41 };
42 
51 extern CbNeoPixel CbLeds;
52 
CbNeoPixel(uint16_t n, uint8_t p=6, neoPixelType t=NEO_GRB+NEO_KHZ800)
Definition: CbLeds.cpp:7
void show(void)
Definition: CbLeds.cpp:12
Wrapper around Adafruit_NeoPixel with Millis() correction.
Definition: CbLeds.h:21