├── .gitignore ├── KCE-Batoid_Wiring-Diagram.jpg ├── KCE-Batoid_sealing-strip-layout.jpg ├── KCE-Batoid_slot.png ├── KCE-batoid_Erland-mod.jpg ├── README.md ├── beauty-1.jpg ├── beauty-2.jpg ├── cad-1.png ├── cad-2.png ├── cad-3.png ├── firmware ├── Batoid_via_leds.hex └── kotte │ └── batoid │ ├── Makefile │ ├── config.h │ ├── kb.c │ ├── kb.h │ ├── keymaps │ ├── default │ │ └── keymap.c │ └── swekce │ │ └── keymap.c │ └── rules.mk ├── hero.png ├── kotte-with-batoid.png ├── print └── KCE-Batoid_sticker.png └── stl ├── BATOID Badge.stl ├── BATOID Bottom Center Back USB C.stl ├── BATOID Bottom Center Back.stl ├── BATOID Bottom Center Front.stl ├── BATOID Bottom Left.stl ├── BATOID Bottom Right.stl ├── BATOID Plate Center.stl ├── BATOID Plate Left.stl ├── BATOID Plate Right.stl ├── BATOID Top Center.stl ├── BATOID Top Left.stl └── BATOID Top Right.stl /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /KCE-Batoid_Wiring-Diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/KCE-Batoid_Wiring-Diagram.jpg -------------------------------------------------------------------------------- /KCE-Batoid_sealing-strip-layout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/KCE-Batoid_sealing-strip-layout.jpg -------------------------------------------------------------------------------- /KCE-Batoid_slot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/KCE-Batoid_slot.png -------------------------------------------------------------------------------- /KCE-batoid_Erland-mod.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/KCE-batoid_Erland-mod.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/README.md -------------------------------------------------------------------------------- /beauty-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/beauty-1.jpg -------------------------------------------------------------------------------- /beauty-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/beauty-2.jpg -------------------------------------------------------------------------------- /cad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/cad-1.png -------------------------------------------------------------------------------- /cad-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/cad-2.png -------------------------------------------------------------------------------- /cad-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/cad-3.png -------------------------------------------------------------------------------- /firmware/Batoid_via_leds.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/firmware/Batoid_via_leds.hex -------------------------------------------------------------------------------- /firmware/kotte/batoid/Makefile: -------------------------------------------------------------------------------- 1 | ifndef MAKEFILE_INCLUDED 2 | include ../../Makefile 3 | endif 4 | -------------------------------------------------------------------------------- /firmware/kotte/batoid/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/firmware/kotte/batoid/config.h -------------------------------------------------------------------------------- /firmware/kotte/batoid/kb.c: -------------------------------------------------------------------------------- 1 | #include "kb.h" 2 | -------------------------------------------------------------------------------- /firmware/kotte/batoid/kb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/firmware/kotte/batoid/kb.h -------------------------------------------------------------------------------- /firmware/kotte/batoid/keymaps/default/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/firmware/kotte/batoid/keymaps/default/keymap.c -------------------------------------------------------------------------------- /firmware/kotte/batoid/keymaps/swekce/keymap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/firmware/kotte/batoid/keymaps/swekce/keymap.c -------------------------------------------------------------------------------- /firmware/kotte/batoid/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/firmware/kotte/batoid/rules.mk -------------------------------------------------------------------------------- /hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/hero.png -------------------------------------------------------------------------------- /kotte-with-batoid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/kotte-with-batoid.png -------------------------------------------------------------------------------- /print/KCE-Batoid_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/print/KCE-Batoid_sticker.png -------------------------------------------------------------------------------- /stl/BATOID Badge.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Badge.stl -------------------------------------------------------------------------------- /stl/BATOID Bottom Center Back USB C.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Bottom Center Back USB C.stl -------------------------------------------------------------------------------- /stl/BATOID Bottom Center Back.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Bottom Center Back.stl -------------------------------------------------------------------------------- /stl/BATOID Bottom Center Front.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Bottom Center Front.stl -------------------------------------------------------------------------------- /stl/BATOID Bottom Left.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Bottom Left.stl -------------------------------------------------------------------------------- /stl/BATOID Bottom Right.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Bottom Right.stl -------------------------------------------------------------------------------- /stl/BATOID Plate Center.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Plate Center.stl -------------------------------------------------------------------------------- /stl/BATOID Plate Left.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Plate Left.stl -------------------------------------------------------------------------------- /stl/BATOID Plate Right.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Plate Right.stl -------------------------------------------------------------------------------- /stl/BATOID Top Center.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Top Center.stl -------------------------------------------------------------------------------- /stl/BATOID Top Left.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Top Left.stl -------------------------------------------------------------------------------- /stl/BATOID Top Right.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kotte-computer-electronics/batoid/HEAD/stl/BATOID Top Right.stl --------------------------------------------------------------------------------