summaryrefslogtreecommitdiff
path: root/keyboards/wekey/we27/we27.c
blob: 9f2b85d95f80511156891203bafb8d7c538b954d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/* Copyright 2021 @wekey
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include "quantum.h"
#include "encoder_actions.h"

#ifdef RGB_MATRIX_ENABLE

#define __ NO_LED

led_config_t g_led_config = { {
    { 0,  1,  2,  3,  4  },
    { 9,  8,  7,  6,  5  },
    { 10, 11, 12, 13, 14 },
    { 18, 17, 16, 15, __ },
    { 19, 20, 21, 22, 23 },
    { 26, 25, __, 24, __ }
}, {
    {0,1},{56,1},{112,1},{168,1},{224,1},
    {0,16},{56,16},{112,16},{168,16},{224,16},
    {0,28},{56,28},{112,28},{168,28},{224,28},
    {0,40},{56,40},{112,40},{168,40},
    {0,52},{56,52},{112,52},{168,52},{224,52},
    {0,64},{56,64},{168,64}
}, {
    1, 1, 1, 1, 1,
    1, 1, 4, 4, 4,
    1, 4, 4, 4, 4,
    1, 4, 4, 4,
    1, 4, 4, 4, 4,
    1, 4,    4
} };

#endif

void matrix_scan_kb(void) {
    encoder_action_unregister();
    matrix_scan_user();
}

bool encoder_update_kb(uint8_t index, bool clockwise) {
    if (!encoder_update_user(index, clockwise)) { return false; }
    encoder_action_register(index, clockwise);
    return true;
};