qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

base.c (2078B)


      1 /* Copyright 2022 @ Keychron (https://www.keychron.com)
      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 "quantum.h"
     18 
     19 #ifdef RGB_MATRIX_ENABLE
     20 
     21 // clang-format off
     22 
     23 const snled27351_led_t PROGMEM g_snled27351_leds[SNLED27351_LED_COUNT] = {
     24 /* Refer to SNLED27351 manual for these locations
     25  *   driver
     26  *   |  R location
     27  *   |  |       G location
     28  *   |  |       |       B location
     29  *   |  |       |       | */
     30     {0, CB6_CA5,    CB4_CA5,    CB5_CA5}, // 0
     31     {0, CB9_CA5,    CB7_CA5,    CB8_CA5}, // 1
     32     {0, CB12_CA5,    CB10_CA5,    CB11_CA5}, // 2
     33     {0, CB3_CA5,    CB1_CA5,    CB2_CA5}, // 3
     34 
     35     {0, CB6_CA4,    CB4_CA4,    CB5_CA4}, // 4
     36     {0, CB9_CA4,    CB7_CA4,    CB8_CA4}, // 5
     37     {0, CB12_CA4,    CB10_CA4,    CB11_CA4}, // 6
     38     {0, CB3_CA4,    CB1_CA4,    CB2_CA4}, // 7
     39 
     40     {0, CB6_CA6,    CB4_CA6,    CB5_CA6}, // 8
     41     {0, CB9_CA6,    CB7_CA6,    CB8_CA6}, // 9
     42     {0, CB12_CA6,    CB10_CA6,    CB11_CA6}, // 10
     43 
     44     {0, CB6_CA3,    CB4_CA3,    CB5_CA3}, // 11
     45     {0, CB9_CA3,    CB7_CA3,    CB8_CA3}, // 12
     46     {0, CB12_CA3,    CB10_CA3,    CB11_CA3}, // 13
     47     {0, CB3_CA6,    CB1_CA6,    CB2_CA6}, // 14
     48 
     49     {0, CB6_CA2,    CB4_CA2,    CB5_CA2}, // 15
     50     {0, CB9_CA2,    CB7_CA2,    CB8_CA2}, // 16
     51     {0, CB12_CA2,    CB10_CA2,    CB11_CA2}, // 17
     52 
     53     {0, CB6_CA1,    CB4_CA1,    CB5_CA1}, // 18
     54     {0, CB12_CA1,    CB10_CA1,    CB11_CA1}, // 19
     55     {0, CB3_CA2,    CB1_CA2,    CB2_CA2}, // 20
     56 };
     57 #endif // RGB_MATRIX_ENABLE