-
Notifications
You must be signed in to change notification settings - Fork 0
/
letters.h
25 lines (24 loc) · 946 Bytes
/
letters.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#ifndef H_LETTERS
#define H_LETTERS
/*
* 0 2 4 6 8 10 12 14
* A B C D E F G H
* ---------------------------
* 31 29 27 25 23 21 19 17 15 |
* I J K L M N O P Q |
* ---------------------------
* | 32 34 36 38 40 42 44 46 48
* | R S T U V W X Y Z
* -------------------------------
*/
const int strange_letters[] = {
0, 2, 4, 6, 8, 10, 12, 14,
33, 31, 29, 27, 25, 23, 21, 19, 17,
36, 37, 39, 41, 43, 45, 47, 48, 49
};
const CRGB strange_colors[] = {
CRGB::Bisque, CRGB::MediumBlue, CRGB::Indigo, CRGB::GreenYellow, CRGB::DodgerBlue, CRGB::Goldenrod, CRGB::Indigo, CRGB::GreenYellow,
CRGB::GreenYellow, CRGB::Indigo, CRGB::MediumBlue, CRGB::GreenYellow, CRGB::Goldenrod, CRGB::Indigo, CRGB::Indigo, CRGB::GreenYellow, CRGB::Indigo,
CRGB::GreenYellow, CRGB::Bisque, CRGB::Goldenrod, CRGB::MediumBlue, CRGB::Indigo, CRGB::MediumBlue, CRGB::Goldenrod, CRGB::Indigo, CRGB::Indigo
};
#endif