Browse Source

Disable LEDs on Infinity Ergodox

Fred Sundvik 8 years ago
parent
commit
bc97413bf7
2 changed files with 1 additions and 3 deletions
  1. 1 1
      keyboards/ergodox/infinity/rules.mk
  2. 0 2
      keyboards/ergodox/infinity/visualizer.c

+ 1 - 1
keyboards/ergodox/infinity/rules.mk

@@ -61,7 +61,7 @@ CUSTOM_MATRIX ?= yes # Custom matrix file
 SERIAL_LINK_ENABLE = yes
 SERIAL_LINK_ENABLE = yes
 VISUALIZER_ENABLE ?= yes
 VISUALIZER_ENABLE ?= yes
 LCD_ENABLE ?= yes
 LCD_ENABLE ?= yes
-LED_ENABLE ?= yes
+LED_ENABLE ?= no
 LCD_BACKLIGHT_ENABLE ?= yes
 LCD_BACKLIGHT_ENABLE ?= yes
 MIDI_ENABLE = no
 MIDI_ENABLE = no
 RGBLIGHT_ENABLE = no
 RGBLIGHT_ENABLE = no

+ 0 - 2
keyboards/ergodox/infinity/visualizer.c

@@ -27,7 +27,6 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 #endif
 #endif
 
 
 #include "visualizer.h"
 #include "visualizer.h"
-#include "led_test.h"
 
 
 // To generate an image array like this
 // To generate an image array like this
 // Ensure the image is 128 x 32 or smaller
 // Ensure the image is 128 x 32 or smaller
@@ -205,5 +204,4 @@ void user_visualizer_resume(visualizer_state_t* state) {
     state->current_lcd_color = initial_color;
     state->current_lcd_color = initial_color;
     state->target_lcd_color = logo_background_color;
     state->target_lcd_color = logo_background_color;
     start_keyframe_animation(&resume_animation);
     start_keyframe_animation(&resume_animation);
-    start_keyframe_animation(&led_test_animation);
 }
 }