Interfaçage NeoPixel Ring 12, LPRO MECSE, Arnaud A.

neoPixelRing12.h

Committer:
Rhamao
Date:
2020-06-22
Revision:
1:76fb4b762ab1
Parent:
0:754bf033bd47
Child:
2:327eb27271b0

File content as of revision 1:76fb4b762ab1:

#ifndef NEO_PIXEL_RING_12
#define NEO_PIXEL_RING_12
 
#include "mbed.h"
#include "string.h" 
#include <stdlib.h>

#define RST_TIME_IN_US 70

class NeoPixelRing12
{
    public:
        NeoPixelRing12(DigitalOut _digitalOutPin);
        bool rst();
        bool rgbToDataStructure(char* rgbCode);
        bool bit(bool value);
        bool setLights(int nbOfLeds, char* rgbCode); 
        bool setLights(char RGBmap[12][7]);  
        bool initLights();
        bool circleUpAnimations(); 
        bool setLightsNoReset(int nbOfLeds, char* rgbCode);      
  
    private:
        DigitalOut digitalOutPin;
        bool rgbDataStructure[24];
};

#endif