From 002a1add8b68ca8b1c7c2c21f75dca88df15ad2e Mon Sep 17 00:00:00 2001 From: Chris Broekema Date: Sat, 29 Jan 2022 08:04:42 +0100 Subject: [Keyboard] Add misterdeck 3d-printed handwired stream deck (#15556) Co-authored-by: Ryan --- .../handwired/misterdeck/keymaps/default/config.h | 20 ++++++++++++ .../handwired/misterdeck/keymaps/default/keymap.c | 37 ++++++++++++++++++++++ .../misterdeck/keymaps/nobuttons/config.h | 22 +++++++++++++ .../misterdeck/keymaps/nobuttons/keymap.c | 37 ++++++++++++++++++++++ 4 files changed, 116 insertions(+) create mode 100644 keyboards/handwired/misterdeck/keymaps/default/config.h create mode 100644 keyboards/handwired/misterdeck/keymaps/default/keymap.c create mode 100644 keyboards/handwired/misterdeck/keymaps/nobuttons/config.h create mode 100644 keyboards/handwired/misterdeck/keymaps/nobuttons/keymap.c (limited to 'keyboards/handwired/misterdeck/keymaps') diff --git a/keyboards/handwired/misterdeck/keymaps/default/config.h b/keyboards/handwired/misterdeck/keymaps/default/config.h new file mode 100644 index 0000000000..c21c29910b --- /dev/null +++ b/keyboards/handwired/misterdeck/keymaps/default/config.h @@ -0,0 +1,20 @@ +/* Copyright 2021 Chris Broekema (broekema@gmail.com) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#pragma once + +#define JOYSTICK_AXES_COUNT 4 +#define JOYSTICK_BUTTON_COUNT 4 diff --git a/keyboards/handwired/misterdeck/keymaps/default/keymap.c b/keyboards/handwired/misterdeck/keymaps/default/keymap.c new file mode 100644 index 0000000000..a6b6ee467e --- /dev/null +++ b/keyboards/handwired/misterdeck/keymaps/default/keymap.c @@ -0,0 +1,37 @@ +/* Copyright 2021 Chris Broekema (broekema@gmail.com) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include QMK_KEYBOARD_H +#include "joystick.h" + +enum layers { + NORMAL_LAYER = 0 +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [NORMAL_LAYER] = LAYOUT( C(S(KC_F1)), C(S(KC_F2)), C(S(KC_F3)), C(S(KC_F4)), + C(S(KC_F5)), C(S(KC_F6)), C(S(KC_F7)), C(S(KC_F8)), + JS_BUTTON0, JS_BUTTON1, JS_BUTTON2, JS_BUTTON3 ), +}; + + + +joystick_config_t joystick_axes[JOYSTICK_AXES_COUNT] = { + [0] = JOYSTICK_AXIS_IN(F4, 0, 512, 1023), + [1] = JOYSTICK_AXIS_IN(F5, 0, 512, 1023), + [2] = JOYSTICK_AXIS_IN(F6, 0, 512, 1023), + [3] = JOYSTICK_AXIS_IN(F7, 0, 512, 1023) +}; diff --git a/keyboards/handwired/misterdeck/keymaps/nobuttons/config.h b/keyboards/handwired/misterdeck/keymaps/nobuttons/config.h new file mode 100644 index 0000000000..bd150139c1 --- /dev/null +++ b/keyboards/handwired/misterdeck/keymaps/nobuttons/config.h @@ -0,0 +1,22 @@ +/* +Copyright 2021 Chris Broekema (broekema@gmail.com) + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +*/ + + +#pragma once + +#define JOYSTICK_AXES_COUNT 4 +#define JOYSTICK_BUTTON_COUNT 0 diff --git a/keyboards/handwired/misterdeck/keymaps/nobuttons/keymap.c b/keyboards/handwired/misterdeck/keymaps/nobuttons/keymap.c new file mode 100644 index 0000000000..fbeb636cf2 --- /dev/null +++ b/keyboards/handwired/misterdeck/keymaps/nobuttons/keymap.c @@ -0,0 +1,37 @@ +/* Copyright 2021 Chris Broekema (broekema@gmail.com) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include QMK_KEYBOARD_H +#include "joystick.h" + +enum layers { + NORMAL_LAYER = 0 +}; + +const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { + [NORMAL_LAYER] = LAYOUT( C(S(KC_F1)), C(S(KC_F2)), C(S(KC_F3)), C(S(KC_F4)), + C(S(KC_F5)), C(S(KC_F6)), C(S(KC_F7)), C(S(KC_F8)), + C(S(KC_F9)), C(S(KC_F10)), C(S(KC_F11)), C(S(KC_F12))), +}; + + + +joystick_config_t joystick_axes[JOYSTICK_AXES_COUNT] = { + [0] = JOYSTICK_AXIS_IN(F4, 0, 512, 1023), + [1] = JOYSTICK_AXIS_IN(F5, 0, 512, 1023), + [2] = JOYSTICK_AXIS_IN(F6, 0, 512, 1023), + [3] = JOYSTICK_AXIS_IN(F7, 0, 512, 1023) +}; -- cgit v1.2.3