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