chromatonemini.c (3431B)
1 /* Copyright 2021 3araht 2 * 3 * This program is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, either version 2 of the License, or 6 * (at your option) any later version. 7 * 8 * This program is distributed in the hope that it will be useful, 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * GNU General Public License for more details. 12 * 13 * You should have received a copy of the GNU General Public License 14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 */ 16 17 #include "chromatonemini.h" 18 19 #ifdef RGB_MATRIX_ENABLE 20 # define NO_LED 255 21 22 // indicator 23 const uint8_t led_scale_indicator[12][12] = { 24 {23, 29, 35, 41, 60, 66, 72, 78, 97, 103, 109, 115}, // C 25 { 5, 11, 17, 42, 48, 54, 79, 85, 91, NO_LED, NO_LED, NO_LED}, // C# 26 {28, 34, 40, 65, 71, 77, 102, 108, 114, NO_LED, NO_LED, NO_LED}, // D 27 { 6, 12, 18, 43, 49, 55, 80, 86, 92, NO_LED, NO_LED, NO_LED}, // D# 28 {27, 33, 39, 64, 70, 76, 101, 107, 113, NO_LED, NO_LED, NO_LED}, // E 29 { 7, 13, 19, 44, 50, 56, 81, 87, 93, NO_LED, NO_LED, NO_LED}, // F 30 {26, 32, 38, 63, 69, 75, 100, 106, 112, NO_LED, NO_LED, NO_LED}, // F# 31 { 8, 14, 20, 45, 51, 57, 82, 88, 94, NO_LED, NO_LED, NO_LED}, // G 32 {25, 31, 37, 62, 68, 74, 99, 105, 111, NO_LED, NO_LED, NO_LED}, // G# 33 { 9, 15, 21, 46, 52, 58, 83, 89, 95, NO_LED, NO_LED, NO_LED}, // A 34 {24, 30, 36, 61, 67, 73, 98, 104, 110, NO_LED, NO_LED, NO_LED}, // A# 35 {10, 16, 22, 47, 53, 59, 84, 90, 96, NO_LED, NO_LED, NO_LED} // B 36 }; 37 38 const uint8_t led_single_col_indicator[37][3] = { 39 {41, 78, 115}, // K01 = C1 40 { 5, 42, 79}, // K02 = C#1 41 {40, 77, 114}, // K03 = D1 42 { 6, 43, 80}, // K04 = D#1 43 {39, 76, 113}, // K05 = E1 44 { 7, 44, 81}, // K06 = F1 45 {38, 75, 112}, // K07 = F#1 46 { 8, 45, 82}, // K08 = G1 47 {37, 74, 111}, // K09 = G#1 48 { 9, 46, 83}, // K10 = A1 49 {36, 73, 110}, // K11 = A#1 50 {10, 47, 84}, // K12 = B1 51 {35, 72, 109}, // K13 = C2 52 {11, 48, 85}, // K14 = C#2 53 {34, 71, 108}, // K15 = D2 54 {12, 49, 86}, // K16 = D#2 55 {33, 70, 107}, // K17 = E2 56 {13, 50, 87}, // K18 = F2 57 {32, 69, 106}, // K19 = F#2 58 {14, 51, 88}, // K20 = G2 59 {31, 68, 105}, // K21 = G#2 60 {15, 52, 89}, // K22 = A2 61 {30, 67, 104}, // K23 = A#2 62 {16, 53, 90}, // K24 = B2 63 {29, 66, 103}, // K25 = C3 64 {17, 54, 91}, // K26 = C#3 65 {28, 65, 102}, // K27 = D3 66 {18, 55, 92}, // K28 = D#3 67 {27, 64, 101}, // K29 = E3 68 {19, 56, 93}, // K30 = F3 69 {26, 63, 100}, // K31 = F#3 70 {20, 57, 94}, // K32 = G3 71 {25, 62, 99}, // K33 = G#3 72 {21, 58, 95}, // K34 = A3 73 {24, 61, 98}, // K35 = A#3 74 {22, 59, 96}, // K36 = B3 75 {23, 60, 97} // K37 = C4 76 }; 77 78 #endif // RGB_MATRIX_ENABLE 79 80 uint8_t shift_led_indicator_left(uint8_t scale_indicator_col){ 81 if (scale_indicator_col > 0) { 82 scale_indicator_col--; 83 } else { 84 scale_indicator_col = 11; 85 } 86 return scale_indicator_col; 87 } 88 89 uint8_t shift_led_indicator_right(uint8_t scale_indicator_col){ 90 if (scale_indicator_col < 11) { 91 scale_indicator_col++; 92 } else { 93 scale_indicator_col = 0; 94 } 95 return scale_indicator_col; 96 }