summaryrefslogtreecommitdiff
path: root/keyboards/keebwerk
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-08-23 10:00:03 +1000
committerGitHub <noreply@github.com>2023-08-23 01:00:03 +0100
commit37bc9499453f95e4e835faa751dbfffff9bfd644 (patch)
treedf976fa0c137564ace2a48caca69ea58e2ba6468 /keyboards/keebwerk
parentdfb6d38f08b3912baffbca23e351dd0ad836238c (diff)
RGB Matrix: driver naming cleanups (#21594)
Diffstat (limited to 'keyboards/keebwerk')
-rwxr-xr-xkeyboards/keebwerk/mega/ansi/ansi.c4
-rw-r--r--keyboards/keebwerk/mega/ansi/keymaps/jesusvallejo/keymap.c20
2 files changed, 12 insertions, 12 deletions
diff --git a/keyboards/keebwerk/mega/ansi/ansi.c b/keyboards/keebwerk/mega/ansi/ansi.c
index 532cdec9aa..4494ffd9ff 100755
--- a/keyboards/keebwerk/mega/ansi/ansi.c
+++ b/keyboards/keebwerk/mega/ansi/ansi.c
@@ -36,7 +36,7 @@ uint8_t B = 0;
// } else {
// G = 0;
// }
-// IS31FL3733_set_color( 6+64-1, R, G, B );
+// is31fl3733_set_color( 6+64-1, R, G, B );
// }
// return res;
// }
@@ -54,6 +54,6 @@ __attribute__((weak)) layer_state_t layer_state_set_user(layer_state_t state) {
if (IS_LAYER_ON_STATE(layer_state, 3)) {
B = 255;
}
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
return state;
}
diff --git a/keyboards/keebwerk/mega/ansi/keymaps/jesusvallejo/keymap.c b/keyboards/keebwerk/mega/ansi/keymaps/jesusvallejo/keymap.c
index a9b1dec281..2b5d658f02 100644
--- a/keyboards/keebwerk/mega/ansi/keymaps/jesusvallejo/keymap.c
+++ b/keyboards/keebwerk/mega/ansi/keymaps/jesusvallejo/keymap.c
@@ -77,25 +77,25 @@ bool bootAnimation(void){
G = 255;
R = 0;
B = 0;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
}
if (timer_elapsed(ledTimer) > 300){
G = 255;
R = 255;
B = 0;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
}
if (timer_elapsed(ledTimer) > 400){
G = 255;
R = 255;
B = 255;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
}
if (timer_elapsed(ledTimer) > 500){
G = 0;
R = 0;
B = 0;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
ledTimer = timer_read();
bootFirst--;
}
@@ -105,13 +105,13 @@ bool bootAnimation(void){
G = 255;
R = 255;
B = 255;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
}
if (timer_elapsed(ledTimer) > 400){
G = 0;
R = 0;
B = 0;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
ledTimer = timer_read();
bootSec--;
}
@@ -129,7 +129,7 @@ void breathing(void) {
G+=fadeStep;
R+=fadeStep;
B+=fadeStep;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
previousTime = time;
}
}
@@ -139,7 +139,7 @@ void breathing(void) {
G-=fadeStep;
R-=fadeStep;
B-=fadeStep;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
previousTime = time;
}
}
@@ -147,7 +147,7 @@ void breathing(void) {
R=0;
G=0;
B=0;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
previousTime = 0;
time = 0;
ledTimer=timer_read();
@@ -169,7 +169,7 @@ void matrix_scan_user(void){
G = 0;
R = 0;
B = 0;
- IS31FL3733_set_color( 6+64-1, R, G, B );
+ is31fl3733_set_color( 6+64-1, R, G, B );
prevCapsState = capsState;
}
}