]> git.donarmstrong.com Git - qmk_firmware.git/blob - keyboards/mechmini/v1/v1.c
Merge branch 'master' of github.com:qmk/qmk_firmware into hf/shinydox
[qmk_firmware.git] / keyboards / mechmini / v1 / v1.c
1 /*
2 Copyright 2017 Luiz Ribeiro <luizribeiro@gmail.com>
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
18 #include "v1.h"
19 #include <avr/pgmspace.h>
20 #include "action_layer.h"
21 #include "i2c.h"
22 #include "quantum.h"
23 #include "rgblight.h"
24
25 // for keyboard subdirectory level init functions
26 // @Override
27 void matrix_init_kb(void) {
28   // call user level keymaps, if any
29   matrix_init_user();
30 }
31
32 #ifdef RGBLIGHT_ENABLE
33 extern rgblight_config_t rgblight_config;
34
35 // custom RGB driver
36 void rgblight_set(void) {
37   if (!rgblight_config.enable) {
38     for (uint8_t i=0; i<RGBLED_NUM; i++) {
39       led[i].r = 0;
40       led[i].g = 0;
41       led[i].b = 0;
42     }
43   }
44
45   i2c_init();
46   i2c_send(0xb0, (uint8_t*)led, 3 * RGBLED_NUM);
47 }
48
49 bool rgb_init = false;
50
51 void matrix_scan_kb(void) {
52   // if LEDs were previously on before poweroff, turn them back on
53   if (rgb_init == false && rgblight_config.enable) {
54     i2c_init();
55     i2c_send(0xb0, (uint8_t*)led, 3 * RGBLED_NUM);
56     rgb_init = true;
57   }
58
59   rgblight_task();
60 #else
61 void matrix_scan_kb(void) {
62 #endif
63   matrix_scan_user();
64   /* Nothing else for now. */
65 }
66
67 __attribute__((weak)) // overridable
68 void matrix_init_user(void) {
69
70 }
71
72
73 __attribute__((weak)) // overridable
74 void matrix_scan_user(void) {
75
76 }