diff options
Diffstat (limited to 'keyboards/keebio')
| -rw-r--r-- | keyboards/keebio/chocopad/config.h | 5 | ||||
| -rw-r--r-- | keyboards/keebio/dilly/config.h | 5 | ||||
| -rw-r--r-- | keyboards/keebio/dilly/dilly.h | 23 | ||||
| -rw-r--r-- | keyboards/keebio/iris/config.h | 5 | ||||
| -rw-r--r-- | keyboards/keebio/levinson/config.h | 5 |
5 files changed, 14 insertions, 29 deletions
diff --git a/keyboards/keebio/chocopad/config.h b/keyboards/keebio/chocopad/config.h index 08e62f034..e07bd5da5 100644 --- a/keyboards/keebio/chocopad/config.h +++ b/keyboards/keebio/chocopad/config.h | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | #ifndef CONFIG_H | 1 | #pragma once |
| 2 | #define CONFIG_H | ||
| 3 | 2 | ||
| 4 | #include "config_common.h" | 3 | #include "config_common.h" |
| 5 | 4 | ||
| @@ -42,5 +41,3 @@ | |||
| 42 | #endif | 41 | #endif |
| 43 | #define RGB_DI_PIN D3 | 42 | #define RGB_DI_PIN D3 |
| 44 | #define RGBLED_NUM 4 | 43 | #define RGBLED_NUM 4 |
| 45 | |||
| 46 | #endif | ||
diff --git a/keyboards/keebio/dilly/config.h b/keyboards/keebio/dilly/config.h index 835498f25..9d7b08509 100644 --- a/keyboards/keebio/dilly/config.h +++ b/keyboards/keebio/dilly/config.h | |||
| @@ -1,5 +1,4 @@ | |||
| 1 | #ifndef CONFIG_H | 1 | #pragma once |
| 2 | #define CONFIG_H | ||
| 3 | 2 | ||
| 4 | #include "config_common.h" | 3 | #include "config_common.h" |
| 5 | 4 | ||
| @@ -46,5 +45,3 @@ | |||
| 46 | #define RGB_DI_PIN D3 | 45 | #define RGB_DI_PIN D3 |
| 47 | 46 | ||
| 48 | #define RGBLED_NUM 10 | 47 | #define RGBLED_NUM 10 |
| 49 | |||
| 50 | #endif | ||
diff --git a/keyboards/keebio/dilly/dilly.h b/keyboards/keebio/dilly/dilly.h index 229c6cd95..e0f13bae5 100644 --- a/keyboards/keebio/dilly/dilly.h +++ b/keyboards/keebio/dilly/dilly.h | |||
| @@ -1,19 +1,16 @@ | |||
| 1 | #ifndef DILLY_H | 1 | #pragma once |
| 2 | #define DILLY_H | ||
| 3 | 2 | ||
| 4 | #include "quantum.h" | 3 | #include "quantum.h" |
| 5 | 4 | ||
| 6 | #define LAYOUT_ortho_3x10( \ | 5 | #define LAYOUT_ortho_3x10( \ |
| 7 | A1, A2, A3, A4, A5, A6, A7, A8, A9, A10, \ | 6 | k00, k01, k02, k03, k04, k34, k33, k32, k31, k30, \ |
| 8 | B1, B2, B3, B4, B5, B6, B7, B8, B9, B10, \ | 7 | k10, k11, k12, k13, k14, k44, k43, k42, k41, k40, \ |
| 9 | C1, C2, C3, C4, C5, C6, C7, C8, C9, C10 \ | 8 | k20, k21, k22, k23, k24, k54, k53, k52, k51, k50 \ |
| 10 | ) { \ | 9 | ) { \ |
| 11 | { A1, A2, A3, A4, A5 }, \ | 10 | { k00, k01, k02, k03, k04 }, \ |
| 12 | { B1, B2, B3, B4, B5 }, \ | 11 | { k10, k11, k12, k13, k14 }, \ |
| 13 | { C1, C2, C3, C4, C5 }, \ | 12 | { k20, k21, k22, k23, k24 }, \ |
| 14 | { A10, A9, A8, A7, A6 }, \ | 13 | { k30, k31, k32, k33, k34 }, \ |
| 15 | { B10, B9, B8, B7, B6 }, \ | 14 | { k40, k41, k42, k43, k44 }, \ |
| 16 | { C10, C9, C8, C7, C6 } \ | 15 | { k50, k51, k52, k53, k54 } \ |
| 17 | } | 16 | } |
| 18 | |||
| 19 | #endif | ||
diff --git a/keyboards/keebio/iris/config.h b/keyboards/keebio/iris/config.h index 863722d7d..6868dc135 100644 --- a/keyboards/keebio/iris/config.h +++ b/keyboards/keebio/iris/config.h | |||
| @@ -15,9 +15,6 @@ You should have received a copy of the GNU General Public License | |||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #ifndef CONFIG_H | 18 | #pragma once |
| 19 | #define CONFIG_H | ||
| 20 | 19 | ||
| 21 | #include "config_common.h" | 20 | #include "config_common.h" |
| 22 | |||
| 23 | #endif // CONFIG_H | ||
diff --git a/keyboards/keebio/levinson/config.h b/keyboards/keebio/levinson/config.h index ca0c79e55..4a3def7cc 100644 --- a/keyboards/keebio/levinson/config.h +++ b/keyboards/keebio/levinson/config.h | |||
| @@ -17,9 +17,6 @@ You should have received a copy of the GNU General Public License | |||
| 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 17 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 18 | */ | 18 | */ |
| 19 | 19 | ||
| 20 | #ifndef CONFIG_H | 20 | #pragma once |
| 21 | #define CONFIG_H | ||
| 22 | 21 | ||
| 23 | #include "config_common.h" | 22 | #include "config_common.h" |
| 24 | |||
| 25 | #endif | ||
