forked from mirrors/qmk_firmware
134b60bb25
Co-authored-by: Drashna Jaelre <drashna@live.com>
17 lines
578 B
C
17 lines
578 B
C
// Copyright 2020 tominabox1 (@tominabox1) and sickbabies
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#define KEYLOG_LEN 11
|
|
|
|
extern const char PROGMEM code_to_name[53];
|
|
extern const char PROGMEM lechiffre_logo[96];
|
|
extern const char PROGMEM oled_section_break[6];
|
|
|
|
void add_keylog(uint16_t keycode, keyrecord_t* record);
|
|
void render_keylock_status(led_t led_state);
|
|
void render_keylogger_status(void);
|
|
void render_layer_status(const char* layer_name);
|
|
void render_mod_status(uint8_t modifiers);
|
|
void update_layer_namebuf(layer_state_t layer, bool force_update);
|