summary refs log tree commit diff
path: root/keyboards/fallacy
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2023-07-29 15:25:00 +1000
committerGitHub <noreply@github.com>2023-07-29 15:25:00 +1000
commit571b8bac826b12d7b837df8bf8bd8d2787f934b8 (patch)
tree90581471799c78c9b3403840ae1b52f6f8dbae62 /keyboards/fallacy
parentb4a7b9253a996484b10b4762f7b2fff7c9105c34 (diff)
LED Matrix: driver naming cleanups (#21580)
Diffstat (limited to 'keyboards/fallacy')
-rwxr-xr-xkeyboards/fallacy/indicators.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/keyboards/fallacy/indicators.c b/keyboards/fallacy/indicators.c
index 8686f292fc..b9a4a87056 100755
--- a/keyboards/fallacy/indicators.c
+++ b/keyboards/fallacy/indicators.c
@@ -23,20 +23,20 @@
  */
 void init_fallacy_leds(void) {
     i2c_init();
-    IS31FL3731_init(LED_DRIVER_ADDR_1);
+    is31fl3731_init(LED_DRIVER_ADDR_1);
 
     for (int i = 0; i < LED_MATRIX_LED_COUNT; i++) {
-        IS31FL3731_set_led_control_register(i, true);
+        is31fl3731_set_led_control_register(i, true);
     }
 
-    IS31FL3731_update_led_control_registers(LED_DRIVER_ADDR_1, 0);
+    is31fl3731_update_led_control_registers(LED_DRIVER_ADDR_1, 0);
 }
 
 
 /* update the buffer
  */
 void update_fallacy_leds(void) {
-    IS31FL3731_update_pwm_buffers(LED_DRIVER_ADDR_1, 0);    
+    is31fl3731_update_pwm_buffers(LED_DRIVER_ADDR_1, 0);    
 }
 
 
@@ -44,10 +44,10 @@ void update_fallacy_leds(void) {
  */
 void set_fallacy_led(int index, bool state) {
     if (state) {
-        IS31FL3731_set_value(index, 128);
+        is31fl3731_set_value(index, 128);
     } 
     else {
-        IS31FL3731_set_value(index, 0);
+        is31fl3731_set_value(index, 0);
     }
 }