diff options
author | Victor Toni <ViToni@users.noreply.github.com> | 2021-12-27 11:13:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-27 21:13:12 +1100 |
commit | 6209122213af6f675b50ad34dc2066dad42e7013 (patch) | |
tree | 908dca5d1fd98b10a773d2e700c04a332304cfe0 /users/vitoni/vitoni.h | |
parent | 6bc870d899c474bce82457699ec4b753d1538123 (diff) | |
download | qmk_firmware-6209122213af6f675b50ad34dc2066dad42e7013.tar.gz qmk_firmware-6209122213af6f675b50ad34dc2066dad42e7013.zip |
[Keymap] Add vitoni keymap for GMMK Pro (ISO) (#15006)
* [Keymap] Add vitoni layout for GMMK Pro (ISO)
Keymap has layered cursor keys similar to laptop keyboards.
* Configure RGB defaults for startup
* Configure encoder to change value/brightness on FN layer
* Remove FN layer and add dedicated RGB layer
* Make RGB layer sticky (using TG) to avoid holding FN while configuring RGB
* Add RGB indicators for active layers
* Add RGB indicator for active RESET mode
Signed-off-by: Victor Toni <victor.toni@gmail.com>
* Configure idle / USB suspend settings
* Add RGB fade in when resuming after suspend
* Add RGB fade out before suspend
* Add fade out before idle
* Add breathe effect when idle
Diffstat (limited to 'users/vitoni/vitoni.h')
-rw-r--r-- | users/vitoni/vitoni.h | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/users/vitoni/vitoni.h b/users/vitoni/vitoni.h new file mode 100644 index 0000000000..1f26037135 --- /dev/null +++ b/users/vitoni/vitoni.h @@ -0,0 +1,30 @@ +// Copyright 2021 Victor Toni (@vitoni) +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include <stdint.h> +#include <stdbool.h> + +#include <quantum/action.h> + +#include "rgb_matrix_effects.h" + +/** + * @brief Executes periodic tasks, eg. fading or checking for upcoming supend. + * @details Function declaration as weak as the implementation might "disappear" depending on the RGB settings used. + * The weak declaration avoids having to change `keymap.c`. + */ +__attribute__((weak)) +void matrix_scan_user_rgb(void); + +/** + * @brief Executes tasks based on user activity, eg. fading in. + * @details Function declaration as weak as the implementation might "disappear" depending on the RGB settings used. + * The weak declaration avoids having to change `keymap.c`. + * @param[in] keycode + * @param[in] record + * @return `false` if further processing should be stopped, `true` otherwise + */ +__attribute__((weak)) +bool process_record_user_rgb(const uint16_t keycode, const keyrecord_t *record); |