From 1d0b6284705d60fe4884d3910f30dcb6859bfa10 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Fri, 29 Jan 2016 19:16:08 -0800 Subject: [PATCH] what we called matrix_state really only dealt with a the state of a single keyswitch --- key_events.h | 2 +- matrix_state.cpp => keyswitch_state.cpp | 2 +- matrix_state.h => keyswitch_state.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename matrix_state.cpp => keyswitch_state.cpp (96%) rename matrix_state.h => keyswitch_state.h (100%) diff --git a/key_events.h b/key_events.h index 14977797..fd01ab6a 100644 --- a/key_events.h +++ b/key_events.h @@ -2,7 +2,7 @@ #include #include "key_defs.h" -#include "matrix_state.h" +#include "keyswitch_state.h" #include "MouseWrapper.h" #include "LEDControl.h" #include "Storage.h" diff --git a/matrix_state.cpp b/keyswitch_state.cpp similarity index 96% rename from matrix_state.cpp rename to keyswitch_state.cpp index 2457be44..9f0ec330 100644 --- a/matrix_state.cpp +++ b/keyswitch_state.cpp @@ -1,4 +1,4 @@ -#include "matrix_state.h" +#include "keyswitch_state.h" // switch debouncing and status diff --git a/matrix_state.h b/keyswitch_state.h similarity index 100% rename from matrix_state.h rename to keyswitch_state.h