├── .envrc ├── .gitignore ├── .prettierrc.json ├── LICENSE ├── LICENSE-models ├── README.keyboard.md ├── README.md ├── doc └── intro.md ├── guide ├── README.org ├── application-of-switches-and-caps.jpg ├── circuit-diagram.png ├── diode-diagram-drive-columns.png ├── diode-diagram-drive-rows.png ├── hotglue-left-hand.jpg ├── left-hand-mcp-1.jpg ├── left-hand-mcp-2.jpg ├── left-hand-pcb-pyralux.png ├── madness.jpg ├── right-hand-pcb-1.jpg ├── right-hand-pcb-pyralux.png ├── right-hand-pcb-with-teensy.jpg ├── rows-and-columns-connected-to-chips.jpg ├── teensy-1.jpg ├── teensy-2-fuxor-reziztorrs.jpg ├── thumb-key-wiring.jpg ├── trrs-jack.jpg ├── wiring-create-columns-left.jpg ├── wiring-create-columns-right.jpg ├── wiring-create-rows-both-sides.jpg ├── wiring-create-rows-testing.jpg ├── wiring_create_rows.jpg └── workbench.jpg ├── project.clj ├── resources ├── Cc-by-nc-sa_icon.svg ├── dactyl_manuform_left_wire_diagram.png ├── dactyl_manuform_right_wire_diagram.png ├── example.html ├── glamourshot.png ├── index.html ├── json-help.html ├── lightcycle.html ├── manuform.html ├── pcb-left.svg ├── pcb-right.svg ├── prototype.jpg ├── public │ ├── favicon.ico │ ├── lightcycle.json │ ├── loligagger-external-holder-elite-c-v1.stl │ ├── loligagger-external-holder-promicro-v1.stl │ ├── loligagger-external-holder-promicro-v2.stl │ ├── loligagger-external-holder-promicro-v3-extended.stl │ ├── main.css │ ├── manuform.json │ ├── milligram.min.css │ └── normalize.css └── wrapper.html ├── shell.nix ├── src └── dactyl_keyboard │ ├── common.clj │ ├── generator.clj │ ├── handler.clj │ ├── lightcycle.clj │ ├── manuform.clj │ └── util.clj └── things └── .gitkeep /.envrc: -------------------------------------------------------------------------------- 1 | use_nix 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/LICENSE-models -------------------------------------------------------------------------------- /README.keyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/README.keyboard.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/README.md -------------------------------------------------------------------------------- /doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/doc/intro.md -------------------------------------------------------------------------------- /guide/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/README.org -------------------------------------------------------------------------------- /guide/application-of-switches-and-caps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/application-of-switches-and-caps.jpg -------------------------------------------------------------------------------- /guide/circuit-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/circuit-diagram.png -------------------------------------------------------------------------------- /guide/diode-diagram-drive-columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/diode-diagram-drive-columns.png -------------------------------------------------------------------------------- /guide/diode-diagram-drive-rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/diode-diagram-drive-rows.png -------------------------------------------------------------------------------- /guide/hotglue-left-hand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/hotglue-left-hand.jpg -------------------------------------------------------------------------------- /guide/left-hand-mcp-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/left-hand-mcp-1.jpg -------------------------------------------------------------------------------- /guide/left-hand-mcp-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/left-hand-mcp-2.jpg -------------------------------------------------------------------------------- /guide/left-hand-pcb-pyralux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/left-hand-pcb-pyralux.png -------------------------------------------------------------------------------- /guide/madness.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/madness.jpg -------------------------------------------------------------------------------- /guide/right-hand-pcb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/right-hand-pcb-1.jpg -------------------------------------------------------------------------------- /guide/right-hand-pcb-pyralux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/right-hand-pcb-pyralux.png -------------------------------------------------------------------------------- /guide/right-hand-pcb-with-teensy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/right-hand-pcb-with-teensy.jpg -------------------------------------------------------------------------------- /guide/rows-and-columns-connected-to-chips.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/rows-and-columns-connected-to-chips.jpg -------------------------------------------------------------------------------- /guide/teensy-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/teensy-1.jpg -------------------------------------------------------------------------------- /guide/teensy-2-fuxor-reziztorrs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/teensy-2-fuxor-reziztorrs.jpg -------------------------------------------------------------------------------- /guide/thumb-key-wiring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/thumb-key-wiring.jpg -------------------------------------------------------------------------------- /guide/trrs-jack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/trrs-jack.jpg -------------------------------------------------------------------------------- /guide/wiring-create-columns-left.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/wiring-create-columns-left.jpg -------------------------------------------------------------------------------- /guide/wiring-create-columns-right.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/wiring-create-columns-right.jpg -------------------------------------------------------------------------------- /guide/wiring-create-rows-both-sides.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/wiring-create-rows-both-sides.jpg -------------------------------------------------------------------------------- /guide/wiring-create-rows-testing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/wiring-create-rows-testing.jpg -------------------------------------------------------------------------------- /guide/wiring_create_rows.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/wiring_create_rows.jpg -------------------------------------------------------------------------------- /guide/workbench.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/guide/workbench.jpg -------------------------------------------------------------------------------- /project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/project.clj -------------------------------------------------------------------------------- /resources/Cc-by-nc-sa_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/Cc-by-nc-sa_icon.svg -------------------------------------------------------------------------------- /resources/dactyl_manuform_left_wire_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/dactyl_manuform_left_wire_diagram.png -------------------------------------------------------------------------------- /resources/dactyl_manuform_right_wire_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/dactyl_manuform_right_wire_diagram.png -------------------------------------------------------------------------------- /resources/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/example.html -------------------------------------------------------------------------------- /resources/glamourshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/glamourshot.png -------------------------------------------------------------------------------- /resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/index.html -------------------------------------------------------------------------------- /resources/json-help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/json-help.html -------------------------------------------------------------------------------- /resources/lightcycle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/lightcycle.html -------------------------------------------------------------------------------- /resources/manuform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/manuform.html -------------------------------------------------------------------------------- /resources/pcb-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/pcb-left.svg -------------------------------------------------------------------------------- /resources/pcb-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/pcb-right.svg -------------------------------------------------------------------------------- /resources/prototype.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/prototype.jpg -------------------------------------------------------------------------------- /resources/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/favicon.ico -------------------------------------------------------------------------------- /resources/public/lightcycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/lightcycle.json -------------------------------------------------------------------------------- /resources/public/loligagger-external-holder-elite-c-v1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/loligagger-external-holder-elite-c-v1.stl -------------------------------------------------------------------------------- /resources/public/loligagger-external-holder-promicro-v1.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/loligagger-external-holder-promicro-v1.stl -------------------------------------------------------------------------------- /resources/public/loligagger-external-holder-promicro-v2.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/loligagger-external-holder-promicro-v2.stl -------------------------------------------------------------------------------- /resources/public/loligagger-external-holder-promicro-v3-extended.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/loligagger-external-holder-promicro-v3-extended.stl -------------------------------------------------------------------------------- /resources/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/main.css -------------------------------------------------------------------------------- /resources/public/manuform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/manuform.json -------------------------------------------------------------------------------- /resources/public/milligram.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/milligram.min.css -------------------------------------------------------------------------------- /resources/public/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/public/normalize.css -------------------------------------------------------------------------------- /resources/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/resources/wrapper.html -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/shell.nix -------------------------------------------------------------------------------- /src/dactyl_keyboard/common.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/src/dactyl_keyboard/common.clj -------------------------------------------------------------------------------- /src/dactyl_keyboard/generator.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/src/dactyl_keyboard/generator.clj -------------------------------------------------------------------------------- /src/dactyl_keyboard/handler.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/src/dactyl_keyboard/handler.clj -------------------------------------------------------------------------------- /src/dactyl_keyboard/lightcycle.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/src/dactyl_keyboard/lightcycle.clj -------------------------------------------------------------------------------- /src/dactyl_keyboard/manuform.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/src/dactyl_keyboard/manuform.clj -------------------------------------------------------------------------------- /src/dactyl_keyboard/util.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnuda/dactyl-keyboard/HEAD/src/dactyl_keyboard/util.clj -------------------------------------------------------------------------------- /things/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------