forked from mirrors/qmk_firmware
007c0c1db4
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
65 lines
1.9 KiB
C
65 lines
1.9 KiB
C
// Copyright 2020-2023 alin m elena (@alinelena)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include "quantum.h"
|
|
|
|
#if defined(UNICODEMAP_ENABLE)
|
|
enum unicode_names { la = 0, lA, lb, lB, lc, lC, ld, lD, le, lE, lf, lF, lg, lG, lh, lH, li, lI, lj, lJ, lk, lK, ll, lL, lm, lM, ln, lN, lo, lO, lp, lP, lq, lQ, lr, lR, ls, lS, lt, lT, lu, lU, lv, lV, lw, lW, lx, lX, ly, lY, lz, lZ, lc1, lC1, lp1, lP1, lq1, lQ1, ll1, lL1, lk1, lK1, lbo1, lbo2, lbc1, lbc2, ls1, ls2, ra, rA, ra1, rA1, rc, rC, ri, rI, rs, rS, rt, rT, ro, rO, ra2, rA2, ra3, rA3, rx, rX, rv, rV, rb, rB, rn, rN };
|
|
#endif
|
|
|
|
enum layer_names { _QW = 0, _LWR, _RSE, _ADJ };
|
|
|
|
|
|
#if defined(OLED_ENABLE)
|
|
void user_oled_magic(void);
|
|
void render_logo(void);
|
|
void clear_screen(void);
|
|
void init_timer(void);
|
|
#endif
|
|
|
|
#if defined(RGBLIGHT_ENABLE)
|
|
void set_rgb_layers(layer_state_t);
|
|
const rgblight_segment_t* const* my_rgb(void);
|
|
void set_default_rgb_layers(layer_state_t);
|
|
#endif
|
|
|
|
void toggle_leds(const bool, const bool);
|
|
void set_led_toggle(const uint8_t, const bool);
|
|
|
|
static inline void init_lwr_rse_led(void) {
|
|
#if defined(LED_LWR_PIN)
|
|
setPinOutput(LED_LWR_PIN);
|
|
writePin(LED_LWR_PIN, false);
|
|
wait_ms(30);
|
|
#endif
|
|
|
|
#if defined(LED_RSE_PIN)
|
|
setPinOutput(LED_RSE_PIN);
|
|
writePin(LED_RSE_PIN, false);
|
|
wait_ms(30);
|
|
#endif
|
|
}
|
|
|
|
static inline void led_lwr(const bool on) {
|
|
#if defined(LED_LWR_PIN)
|
|
if ((PRODUCT_ID == 0x6064) || (PRODUCT_ID == 0x6065) ||
|
|
(PRODUCT_ID == 0x6066) || (PRODUCT_ID == 0x6067)) {
|
|
writePin(LED_LWR_PIN, !on);
|
|
}else{
|
|
writePin(LED_LWR_PIN, on);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
static inline void led_rse(const bool on) {
|
|
#if defined(LED_RSE_PIN)
|
|
if ((PRODUCT_ID == 0x6064) || (PRODUCT_ID == 0x6065) ||
|
|
(PRODUCT_ID == 0x6066) || (PRODUCT_ID == 0x6067)) {
|
|
writePin(LED_RSE_PIN, !on);
|
|
}else{
|
|
writePin(LED_RSE_PIN, on);
|
|
}
|
|
#endif
|
|
}
|