summaryrefslogtreecommitdiff
path: root/keyboards/neson_design/nico/nico.c
blob: b4d15777b7f2c2242e558f86d5b9e5bc956e76c3 (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
79
80
81
82
83
84
85
/**
 * @file nico.c
 *
    Copyright 2023 astro

    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"
#ifdef RGBLIGHT_ENABLE

static bool alert = false;
static bool backup = false;
static rgb_led_t caps_led;
static uint16_t last_ticks = 0;

#define ALERT_INTERVAL      500
#define ALERM_LED_R     0xFF
#define ALERM_LED_G     0xA5
#define ALERM_LED_B     0x00
//golden 0xFF, 0xD9, 0x00

void housekeeping_task_kb(void)
{
    if (host_keyboard_led_state().caps_lock) {
        if (!backup) {
            caps_led.r = led[4].r;
            caps_led.g = led[4].g;
            caps_led.b = led[4].b;
            backup = true;
        }
        if(alert) {
            led[4].r = ALERM_LED_G;
            led[4].g = ALERM_LED_R;
            led[4].b = ALERM_LED_B;
        } else {
            led[4].r = 0;
            led[4].g = 0;
            led[4].b = 0;
        }
        if (timer_elapsed(last_ticks) > ALERT_INTERVAL) {
            alert = !alert;
            last_ticks = timer_read();
        }
        ws2812_setleds(led, RGBLED_NUM);
    } else {
        if (backup) {
            led[4].r = caps_led.r;
            led[4].g = caps_led.g;
            led[4].b = caps_led.b;
            backup = false;
            ws2812_setleds(led, RGBLED_NUM);
        }
    }
    housekeeping_task_user();
}

void rgblight_call_driver(rgb_led_t *start_led, uint8_t num_leds)
{
    start_led[2].r = start_led[0].r;
    start_led[2].g = start_led[0].g;
    start_led[2].b = start_led[0].b;

    start_led[3].r = start_led[1].r;
    start_led[3].g = start_led[1].g;
    start_led[3].b = start_led[1].b;

    uint8_t tmp = start_led[4].g;
    start_led[4].g = start_led[4].r;
    start_led[4].r = tmp;
    ws2812_setleds(start_led, RGBLED_NUM);
}

#endif