├── LICENSE ├── QMK └── wimads │ └── tb3s │ ├── config.h │ ├── info.json │ ├── keymaps │ ├── Wimads │ │ ├── combos.def │ │ ├── config.h │ │ ├── keymap.c │ │ └── rules.mk │ └── via │ │ ├── combos.def │ │ ├── config.h │ │ ├── keymap.c │ │ ├── maccel │ │ ├── maccel.bak.c │ │ ├── maccel.c │ │ ├── maccel.h │ │ └── maccel_via.c │ │ └── rules.mk │ ├── post_config.h │ ├── readme.md │ ├── rules.mk │ ├── tb3s.c │ ├── tb3s.h │ └── via.json ├── README.md ├── STL files ├── README.md ├── TB3S-MX_v1.0 - Housing Bottom.stl ├── TB3S-MX_v1.0 - Housing Top.stl ├── TB3S_Housing Bottom_231214.stl └── TB3S_Housing Top_231214.stl └── images ├── IMG_20231214_184359_805.jpg ├── IMG_20231214_184411_837.jpg ├── IMG_20231214_210434_575.jpg ├── IMG_20231214_222427_293.jpg ├── IMG_20231214_222504_925.jpg ├── IMG_20231214_222613_698.jpg ├── IMG_20231214_222658_6.jpg ├── PXL_20240108_225531608.jpg ├── Screenshot 2024-01-10 215835.png └── Screenshot 2024-01-10 220355.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/LICENSE -------------------------------------------------------------------------------- /QMK/wimads/tb3s/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/config.h -------------------------------------------------------------------------------- /QMK/wimads/tb3s/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/info.json -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/Wimads/combos.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/Wimads/combos.def -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/Wimads/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/Wimads/config.h -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/Wimads/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/Wimads/keymap.c -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/Wimads/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/Wimads/rules.mk -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/via/combos.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/via/combos.def -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/via/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/via/config.h -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/via/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/via/keymap.c -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/via/maccel/maccel.bak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/via/maccel/maccel.bak.c -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/via/maccel/maccel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/via/maccel/maccel.c -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/via/maccel/maccel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/via/maccel/maccel.h -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/via/maccel/maccel_via.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/via/maccel/maccel_via.c -------------------------------------------------------------------------------- /QMK/wimads/tb3s/keymaps/via/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/keymaps/via/rules.mk -------------------------------------------------------------------------------- /QMK/wimads/tb3s/post_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/post_config.h -------------------------------------------------------------------------------- /QMK/wimads/tb3s/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/readme.md -------------------------------------------------------------------------------- /QMK/wimads/tb3s/rules.mk: -------------------------------------------------------------------------------- 1 | POINTING_DEVICE_DRIVER = pmw3360 2 | CONSOLE_ENABLE = yes 3 | -------------------------------------------------------------------------------- /QMK/wimads/tb3s/tb3s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/tb3s.c -------------------------------------------------------------------------------- /QMK/wimads/tb3s/tb3s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/tb3s.h -------------------------------------------------------------------------------- /QMK/wimads/tb3s/via.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/QMK/wimads/tb3s/via.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/README.md -------------------------------------------------------------------------------- /STL files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/STL files/README.md -------------------------------------------------------------------------------- /STL files/TB3S-MX_v1.0 - Housing Bottom.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/STL files/TB3S-MX_v1.0 - Housing Bottom.stl -------------------------------------------------------------------------------- /STL files/TB3S-MX_v1.0 - Housing Top.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/STL files/TB3S-MX_v1.0 - Housing Top.stl -------------------------------------------------------------------------------- /STL files/TB3S_Housing Bottom_231214.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/STL files/TB3S_Housing Bottom_231214.stl -------------------------------------------------------------------------------- /STL files/TB3S_Housing Top_231214.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/STL files/TB3S_Housing Top_231214.stl -------------------------------------------------------------------------------- /images/IMG_20231214_184359_805.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/IMG_20231214_184359_805.jpg -------------------------------------------------------------------------------- /images/IMG_20231214_184411_837.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/IMG_20231214_184411_837.jpg -------------------------------------------------------------------------------- /images/IMG_20231214_210434_575.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/IMG_20231214_210434_575.jpg -------------------------------------------------------------------------------- /images/IMG_20231214_222427_293.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/IMG_20231214_222427_293.jpg -------------------------------------------------------------------------------- /images/IMG_20231214_222504_925.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/IMG_20231214_222504_925.jpg -------------------------------------------------------------------------------- /images/IMG_20231214_222613_698.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/IMG_20231214_222613_698.jpg -------------------------------------------------------------------------------- /images/IMG_20231214_222658_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/IMG_20231214_222658_6.jpg -------------------------------------------------------------------------------- /images/PXL_20240108_225531608.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/PXL_20240108_225531608.jpg -------------------------------------------------------------------------------- /images/Screenshot 2024-01-10 215835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/Screenshot 2024-01-10 215835.png -------------------------------------------------------------------------------- /images/Screenshot 2024-01-10 220355.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wimads/TB3S---DIY-QMK-Trackball-device/HEAD/images/Screenshot 2024-01-10 220355.png --------------------------------------------------------------------------------