~ruther/qmk_firmware

ref: 67a87f67a0b1bb339e088d5ab0f7ffa7bb26ba13 qmk_firmware/users/vitoni/readme.adoc -rw-r--r-- 686 bytes
67a87f67 — QMK Bot Merge remote-tracking branch 'origin/master' into develop 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
= User functions

Functions are mostly related to changing the RGB lights depending on user interaction and when idling.

== utils.h

Common functions are declared in link:utils.h[]. These function are not directly RGB related but used to modify state and calculate values.

== rgb_matrix_effects.h

Functions in link:rgb_matrix_effects.h[] make use of common function in `utils.h` and are used to create to RGB matrix effects such as fading or breathing.

== vitoni.h

The functions declared in link:vitoni.h[] are used as entry points for usage of RGB effects.
One entry point is `matrix_scan` based for regular task while the other is `process_record` based for user activity tasks.
Do not follow this link