├── LICENSE ├── README.md ├── hardware ├── Previous │ ├── HITart_template.svg │ ├── README.md │ ├── WASDsteel.svg │ ├── base plates.dxf │ ├── hit3Cart.svg │ ├── mirror_art.dxf │ ├── mirror_art.svg │ ├── plus - art.dxf │ ├── plus - art.svg │ ├── top plate.dxf │ ├── vsFIGHTERLEDart.svg │ ├── vsFIGHTERart_template.svg │ ├── vsFIGHTERv2.zip │ └── vsFIGHTERv2plate.zip ├── vs4art.dxf └── vs4art.svg ├── media ├── README.md ├── top.jpg ├── vs.png └── vsFIGHTERv2pinout.png └── software ├── GP2040-CE └── vsFIGHTER071.uf2 ├── KeyboardQMKvia.hex ├── QMK ├── config.h ├── info.json ├── keymaps │ ├── default │ │ └── keymap.c │ └── via │ │ ├── config.h │ │ ├── keymap.c │ │ ├── rules.mk │ │ └── vsfighter2.json ├── readme.md ├── rules.mk ├── vsfighter2.c └── vsfighter2.h ├── README.md ├── keyboardQMK.hex ├── vsFIGHTER2gamepad.hex └── vsFIGHTER2gamepad.ino /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/README.md -------------------------------------------------------------------------------- /hardware/Previous/HITart_template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/HITart_template.svg -------------------------------------------------------------------------------- /hardware/Previous/README.md: -------------------------------------------------------------------------------- 1 | ![](media/vsFIGHTERv2pinout.png) 2 | -------------------------------------------------------------------------------- /hardware/Previous/WASDsteel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/WASDsteel.svg -------------------------------------------------------------------------------- /hardware/Previous/base plates.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/base plates.dxf -------------------------------------------------------------------------------- /hardware/Previous/hit3Cart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/hit3Cart.svg -------------------------------------------------------------------------------- /hardware/Previous/mirror_art.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/mirror_art.dxf -------------------------------------------------------------------------------- /hardware/Previous/mirror_art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/mirror_art.svg -------------------------------------------------------------------------------- /hardware/Previous/plus - art.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/plus - art.dxf -------------------------------------------------------------------------------- /hardware/Previous/plus - art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/plus - art.svg -------------------------------------------------------------------------------- /hardware/Previous/top plate.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/top plate.dxf -------------------------------------------------------------------------------- /hardware/Previous/vsFIGHTERLEDart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/vsFIGHTERLEDart.svg -------------------------------------------------------------------------------- /hardware/Previous/vsFIGHTERart_template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/vsFIGHTERart_template.svg -------------------------------------------------------------------------------- /hardware/Previous/vsFIGHTERv2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/vsFIGHTERv2.zip -------------------------------------------------------------------------------- /hardware/Previous/vsFIGHTERv2plate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/Previous/vsFIGHTERv2plate.zip -------------------------------------------------------------------------------- /hardware/vs4art.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/vs4art.dxf -------------------------------------------------------------------------------- /hardware/vs4art.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/hardware/vs4art.svg -------------------------------------------------------------------------------- /media/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /media/top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/media/top.jpg -------------------------------------------------------------------------------- /media/vs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/media/vs.png -------------------------------------------------------------------------------- /media/vsFIGHTERv2pinout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/media/vsFIGHTERv2pinout.png -------------------------------------------------------------------------------- /software/GP2040-CE/vsFIGHTER071.uf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/GP2040-CE/vsFIGHTER071.uf2 -------------------------------------------------------------------------------- /software/KeyboardQMKvia.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/KeyboardQMKvia.hex -------------------------------------------------------------------------------- /software/QMK/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/config.h -------------------------------------------------------------------------------- /software/QMK/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/info.json -------------------------------------------------------------------------------- /software/QMK/keymaps/default/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/keymaps/default/keymap.c -------------------------------------------------------------------------------- /software/QMK/keymaps/via/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/keymaps/via/config.h -------------------------------------------------------------------------------- /software/QMK/keymaps/via/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/keymaps/via/keymap.c -------------------------------------------------------------------------------- /software/QMK/keymaps/via/rules.mk: -------------------------------------------------------------------------------- 1 | VIA_ENABLE = yes 2 | -------------------------------------------------------------------------------- /software/QMK/keymaps/via/vsfighter2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/keymaps/via/vsfighter2.json -------------------------------------------------------------------------------- /software/QMK/readme.md: -------------------------------------------------------------------------------- 1 | # vsfighter2 -------------------------------------------------------------------------------- /software/QMK/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/rules.mk -------------------------------------------------------------------------------- /software/QMK/vsfighter2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/vsfighter2.c -------------------------------------------------------------------------------- /software/QMK/vsfighter2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/QMK/vsfighter2.h -------------------------------------------------------------------------------- /software/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /software/keyboardQMK.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/keyboardQMK.hex -------------------------------------------------------------------------------- /software/vsFIGHTER2gamepad.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/vsFIGHTER2gamepad.hex -------------------------------------------------------------------------------- /software/vsFIGHTER2gamepad.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LeafCutterLabs/vsFIGHTER/HEAD/software/vsFIGHTER2gamepad.ino --------------------------------------------------------------------------------