Davin Nicholas / Mbed OS NixieClock

Dependencies:   BufferedSerial

Backlight/ColorDefs.h

Committer:
abestat2
Date:
2018-04-20
Revision:
1:951d0ba43cb1

File content as of revision 1:951d0ba43cb1:

#ifndef COLORDEFS_H
#define COLORDEFS_H

const uint8_t COLOR_OK[NUM_PIXELS][3] = {{0,255,0},
                                         {0,255,0},
                                         {0,255,0},
                                         {0,255,0},
                                         {0,255,0}};

const uint8_t COLOR_ERROR[NUM_PIXELS][3] = {{255,0,0},
                                            {255,0,0},
                                            {255,0,0},
                                            {255,0,0},
                                            {255,0,0}};

const uint8_t COLOR_CONFIG[NUM_PIXELS][3] = {{0,0,255},
                                             {0,0,255},
                                             {0,0,255},
                                             {0,0,255},
                                             {0,0,255}};

const uint8_t COLOR_OFF[NUM_PIXELS][3] = {{0,0,0},
                                          {0,0,0},
                                          {0,0,0},
                                          {0,0,0},
                                          {0,0,0}};

#endif