summaryrefslogtreecommitdiff
path: root/keyboards/phage_studio/pila87/keymaps/horrortroll/led/cool_diagonal.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2023-04-02 22:24:44 +0000
committerQMK Bot <hello@qmk.fm>2023-04-02 22:24:44 +0000
commit78e0f8dd5452b71776a812f79287324568bcecf2 (patch)
treed16ba89f0fb05e033a172b529f9b22fb9f43cd0e /keyboards/phage_studio/pila87/keymaps/horrortroll/led/cool_diagonal.c
parentd997fe1a4a8cc9530b3b9349441681c3fdeb1fe6 (diff)
parentd3008110096db2ac098db9b5cb47ad77582c01d9 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/phage_studio/pila87/keymaps/horrortroll/led/cool_diagonal.c')
-rw-r--r--keyboards/phage_studio/pila87/keymaps/horrortroll/led/cool_diagonal.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/keyboards/phage_studio/pila87/keymaps/horrortroll/led/cool_diagonal.c b/keyboards/phage_studio/pila87/keymaps/horrortroll/led/cool_diagonal.c
deleted file mode 100644
index 900130aba5..0000000000
--- a/keyboards/phage_studio/pila87/keymaps/horrortroll/led/cool_diagonal.c
+++ /dev/null
@@ -1,22 +0,0 @@
-/* Copyright 2022 HorrorTroll <https://github.com/HorrorTroll>
- *
- * 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/>.
- */
-
-static HSV COOL_DIAGONAL_math(HSV hsv, uint8_t i, uint8_t time) {
- hsv.h = (g_led_config.point[i].x / 4) - g_led_config.point[i].y - time;
- return hsv;
-}
-
-bool COOL_DIAGONAL(effect_params_t* params) { return effect_runner_i(params, &COOL_DIAGONAL_math); }