1
0
Fork 0

Disable LEDs on Infinity Ergodox

This commit is contained in:
Fred Sundvik 2017-04-01 16:38:12 +03:00
parent e6f7a8a47a
commit bc97413bf7
2 changed files with 1 additions and 3 deletions

View File

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

View File

@ -27,7 +27,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#endif
#include "visualizer.h"
#include "led_test.h"
// To generate an image array like this
// 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->target_lcd_color = logo_background_color;
start_keyframe_animation(&resume_animation);
start_keyframe_animation(&led_test_animation);
}