|
|
@@ -14,3 +14,30 @@
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
*/
|
|
|
#include "djam.h"
|
|
|
+
|
|
|
+#ifdef RGB_MATRIX_ENABLE
|
|
|
+led_config_t g_led_config = {
|
|
|
+ {
|
|
|
+ /* Key Matrix to LED Index */
|
|
|
+ { 17, 16, 15, NO_LED, NO_LED, 7, 6, 5 },
|
|
|
+ { 21, 17, 16, 15, 7, 6, 5, 1 },
|
|
|
+ { 19, 18, 13, 11, 9, 4, 3, NO_LED }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ /* LED Index to Physical Position */
|
|
|
+ // Switch LEDs
|
|
|
+ {224,14}, {224,24}, {224,33}, {212,57}, {192,57}, {192,38}, {172,38}, {152,38},
|
|
|
+ {152,57}, {142,57}, {132,57}, {112,57}, {92,57}, {82,57}, {72,57},
|
|
|
+ {72,38}, {52,38}, {32,38}, {32,57}, {12,57}, {0,33}, {0,24}, {0,14},
|
|
|
+ // Underglow LEDs
|
|
|
+ {0,0}, {92,0}, {132,0}, {224,0}, {222,64}, {172,64}, {72,64}, {2,64},
|
|
|
+ },
|
|
|
+ {
|
|
|
+ /* LED Index to Flag */
|
|
|
+ 2, 4, 2, 4, 4, 4, 4, 4,
|
|
|
+ 2, 4, 2, 4, 2, 4, 2,
|
|
|
+ 4, 4, 4, 4, 4, 2, 4, 2,
|
|
|
+ 2, 2, 2, 2, 2, 2, 2, 2
|
|
|
+ }
|
|
|
+};
|
|
|
+#endif
|