]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/skog/skog.c
[Keymap] Jarred's Plaid keymap (#6049)
[qmk_firmware.git] / keyboards / skog / skog.c
1 /*
2 Copyright 2018 Jumail Mundekkat / MxBlue
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 ps2avrGB support code by Kenneth A. (bminiex/.[ch])
18 */
19
20 #include "skog.h"
21
22 #include "rgblight.h"
23
24 #include <avr/pgmspace.h>
25
26 #include "action_layer.h"
27 #include "i2c.h"
28 #include "quantum.h"
29
30 #include "backlight.h"
31 #include "backlight_custom.h"
32
33 // for keyboard subdirectory level init functions
34 // @Override
35 void matrix_init_kb(void) {
36   // call user level keymaps, if any
37   matrix_init_user();
38 }
39
40 #ifdef BACKLIGHT_ENABLE
41 /// Overrides functions in `quantum.c`
42 void backlight_init_ports(void) {
43   b_led_init_ports();
44 }
45
46 void backlight_task(void) {
47   b_led_task();
48 }
49
50 void backlight_set(uint8_t level) {
51   b_led_set(level);
52 }
53 #endif
54
55 #ifdef RGBLIGHT_ENABLE
56 extern rgblight_config_t rgblight_config;
57
58 // custom RGB driver
59 void rgblight_set(void) {
60   if (!rgblight_config.enable) {
61     for (uint8_t i=0; i<RGBLED_NUM; i++) {
62       led[i].r = 0;
63       led[i].g = 0;
64       led[i].b = 0;
65     }
66   }
67
68   i2c_init();
69   i2c_send(0xb0, (uint8_t*)led, 3 * RGBLED_NUM);
70 }
71
72 bool rgb_init = false;
73
74 void matrix_scan_kb(void) {
75   // if LEDs were previously on before poweroff, turn them back on
76   if (rgb_init == false && rgblight_config.enable) {
77     i2c_init();
78     i2c_send(0xb0, (uint8_t*)led, 3 * RGBLED_NUM);
79     rgb_init = true;
80   }
81
82   rgblight_task();
83 #else
84 void matrix_scan_kb(void) {
85 #endif
86   matrix_scan_user();
87   /* Nothing else for now. */
88 }
89
90 __attribute__((weak)) // overridable
91 void matrix_init_user(void) {
92
93 }
94
95 __attribute__((weak)) // overridable
96 void matrix_scan_user(void) {
97
98 }