diff options
Diffstat (limited to 'keyboards/ares/ares.c')
-rw-r--r-- | keyboards/ares/ares.c | 72 |
1 files changed, 4 insertions, 68 deletions
diff --git a/keyboards/ares/ares.c b/keyboards/ares/ares.c index 85c7435ed..07276491c 100644 --- a/keyboards/ares/ares.c +++ b/keyboards/ares/ares.c | |||
@@ -17,50 +17,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
17 | 17 | ||
18 | #include "ares.h" | 18 | #include "ares.h" |
19 | 19 | ||
20 | #ifdef RGBLIGHT_ENABLE | ||
21 | |||
22 | #include <string.h> | ||
23 | #include "i2c_master.h" | ||
24 | #include "rgblight.h" | ||
25 | |||
26 | extern rgblight_config_t rgblight_config; | ||
27 | |||
28 | void matrix_init_kb(void) { | ||
29 | i2c_init(); | ||
30 | // call user level keymaps, if any | ||
31 | matrix_init_user(); | ||
32 | } | ||
33 | |||
34 | // custom RGB driver | ||
35 | void rgblight_set(void) { | ||
36 | if (!rgblight_config.enable) { | ||
37 | memset(led, 0, 3 * RGBLED_NUM); | ||
38 | } | ||
39 | |||
40 | i2c_transmit(0xb0, (uint8_t*)led, 3 * RGBLED_NUM, 100); | ||
41 | } | ||
42 | |||
43 | bool rgb_init = false; | ||
44 | |||
45 | void matrix_scan_kb(void) { | ||
46 | // if LEDs were previously on before poweroff, turn them back on | ||
47 | if (rgb_init == false && rgblight_config.enable) { | ||
48 | i2c_transmit(0xb0, (uint8_t*)led, 3 * RGBLED_NUM, 100); | ||
49 | rgb_init = true; | ||
50 | } | ||
51 | |||
52 | rgblight_task(); | ||
53 | matrix_scan_user(); | ||
54 | } | ||
55 | |||
56 | #endif | ||
57 | |||
58 | #ifdef BACKLIGHT_ENABLE | 20 | #ifdef BACKLIGHT_ENABLE |
59 | void backlight_init_ports(void) { | 21 | void backlight_init_ports(void) { |
60 | setPinOutput(D0); | 22 | setPinOutput(D0); |
61 | setPinOutput(D1); | 23 | setPinOutput(D1); |
62 | setPinOutput(D4); | 24 | setPinOutput(D4); |
63 | setPinOutput(D6); | 25 | setPinOutput(D6); |
64 | } | 26 | } |
65 | 27 | ||
66 | void backlight_set(uint8_t level) { | 28 | void backlight_set(uint8_t level) { |
@@ -79,29 +41,3 @@ void backlight_set(uint8_t level) { | |||
79 | } | 41 | } |
80 | } | 42 | } |
81 | #endif | 43 | #endif |
82 | |||
83 | // Optional override functions below. | ||
84 | // You can leave any or all of these undefined. | ||
85 | // These are only required if you want to perform custom actions. | ||
86 | |||
87 | /* | ||
88 | void matrix_init_kb(void) { | ||
89 | // put your keyboard start-up code here | ||
90 | // runs once when the firmware starts up | ||
91 | matrix_init_user(); | ||
92 | } | ||
93 | void matrix_scan_kb(void) { | ||
94 | // put your looping keyboard code here | ||
95 | // runs every cycle (a lot) | ||
96 | matrix_scan_user(); | ||
97 | } | ||
98 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
99 | // put your per-action keyboard code here | ||
100 | // runs for every action, just before processing by the firmware | ||
101 | return process_record_user(keycode, record); | ||
102 | } | ||
103 | void led_set_kb(uint8_t usb_led) { | ||
104 | // put your keyboard LED indicator (ex: Caps Lock LED) toggling code here | ||
105 | led_set_user(usb_led); | ||
106 | } | ||
107 | */ \ No newline at end of file | ||