Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix left wrist rest not being generated #1

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@
.nrepl-*

.lein-*

/target
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/make
SRC := $(wildcard ./things/*.scad)
DEST := $(SRC:.scad=.stl)

all: $(DEST)

print-vars:
@echo "SRC = $(SRC)"
@echo "DEST = $(DEST)"

%.stl: %.scad
@printf "Generating $@ ... "
@openscad ./$< -o ./$@
@printf "Done.\n"
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Crystalhand's Dactyl
This is my version of the Dactyl with a number of modifications and additions. I changed a number of constants to variables to make it easier to modify.



Customization for dactyl
- Ergodox like layout for a wider range of supported keys
- Curve/slope front back and left/right for alphas and thumb controlled separately
- Thumb cluster layout
- Thumb offset and orientation angle
- Number of rows (5-dactyl or 4-lightcycle)
- Profile selection (ie high low or custom)
- Optional detachable wrist rests with customizable height and slope

# Dactyl
This is a fork based on Crystalhand's modifications of the dactyl keyboard. I
have edited the settings in order to use thumb cluster with only 1u keycaps. I
will upload a photo in the future.

## Crystalhand's modifications
Customization for dactyl
- Ergodox like layout for a wider range of supported keys
- Curve/slope front back and left/right for alphas and thumb controlled separately
- Thumb cluster layout
- Thumb offset and orientation angle
- Number of rows (5-dactyl or 4-lightcycle)
- Profile selection (ie high low or custom)
- Optional detachable wrist rests with customizable height and slope

# The Dactyl Keyboard
The Dactyl is a parameterized, split-hand, concave, columnar, ergonomic keyboard.
Expand All @@ -32,12 +32,12 @@ There's a talk about the motivation and design of the Dactyl that helps provide
* [Install OpenSCAD](http://www.openscad.org/)

**Generating the design**
* Run `lein repl`
* Load the file `(load-file "src/dactyl_keyboard/dactyl.clj")`
* This will regenerate the `things/*.scad` files
* Use OpenSCAD to open a `.scad` file.
* Make changes to design, repeat `load-file`, OpenSCAD will watch for changes and rerender.
* When done, use OpenSCAD to export STL files
1. Run `lein repl`
2. Load the file `(load-file "src/dactyl_keyboard/dactyl.clj")`
3. This will regenerate the `things/*.scad` files
4. Use OpenSCAD to open a `.scad` file.
5. Make changes to design, repeat `load-file`, OpenSCAD will watch for changes and rerender.
6. Use the makefile to generate `.stl` files.

**Tips**
* [Some other ways to evaluate the clojure design file](http://stackoverflow.com/a/28213489)
Expand Down
Loading