Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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