summaryrefslogtreecommitdiffstats
path: root/keyboards/acheron/elongate/delta/delta.c
blob: e83516b56674ad7a87c6e3516f9da8f0d939eba5 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/* Copyright 2021 Gondolindrim
 *
 * 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"

#define LED_PIN_ON_STATE 1
// Inits all indicator LEDs as push-pull outputs
void led_init_ports(void) {
    palSetLineMode(LED1_PIN, PAL_MODE_OUTPUT_PUSHPULL);
    palSetLineMode(LED2_PIN, PAL_MODE_OUTPUT_PUSHPULL);
    palSetLineMode(LED3_PIN, PAL_MODE_OUTPUT_PUSHPULL);
    palSetLineMode(LED4_PIN, PAL_MODE_OUTPUT_PUSHPULL);
    palSetLineMode(LED5_PIN, PAL_MODE_OUTPUT_PUSHPULL);
    palSetLineMode(LED6_PIN, PAL_MODE_OUTPUT_PUSHPULL);
}

// This function updates LEDs 1, 2 and 3 according to num, caps and scroll lock states
bool led_update_kb(led_t led_state) {
    bool res = led_update_user(led_state);
    if(res) {
        writePin(LED1_PIN, !led_state.num_lock);
        writePin(LED2_PIN, !led_state.caps_lock);
        writePin(LED3_PIN, !led_state.scroll_lock);
    }
    return res;
}

// Turns off all bottom LEDs
void turn_off_bottom_leds(void){
	writePin(LED4_PIN, 1);
	writePin(LED5_PIN, 1);
	writePin(LED6_PIN, 1);
}

/*
Here the bottom LEDs get updated. The idea being that LED4 is lit when the default layer is active, LED5 when layer 1 is active and LED6 when layer 2.
Before updating, however, all bottom LEDs are turned off.
*/
layer_state_t layer_state_set_kb(layer_state_t state) {
    turn_off_bottom_leds();
    switch (get_highest_layer(state)) {
// The base layer, or layer zero, will be handled by the default case.
    case 1:
	writePin(LED4_PIN, 1);
	writePin(LED5_PIN, 0);
	writePin(LED6_PIN, 1);
        break;
    case 2:
	writePin(LED4_PIN, 1);
	writePin(LED5_PIN, 1);
	writePin(LED6_PIN, 0);
        break;
    default:
	writePin(LED4_PIN, 0);
	writePin(LED5_PIN, 1);
	writePin(LED6_PIN, 1);
        break;
    }
  return state;
}

// Since the keyboard starts at layer 0, the init function starts LED4 as lit up.
void keyboard_post_init_kb(void){
	writePin(LED4_PIN, 0);
}