• Stars
    star
    125
  • Rank 276,820 (Top 6 %)
  • Language
    Clojure
  • License
    GNU Affero Genera...
  • Created about 1 year ago
  • Updated 9 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Generate Dactyl keyboard designs from your browser.

Dactyl Configurator logo


Website Status GitHub Workflow Status


Dactyl Web Configurator

A web configurator for the Dactyl mechanical keyboard. It's based upon the wonderful work of @ibnuda's web configurator, which organizes the configuration options in various commuity edits to a single JSON structure.

The site uses ClojureScript and WebAssembly to run all computation in the browser. This means I don't have to pay for expensive servers to render everyone's cad models!

Screenshot of website

The new developments of this work are:

  • All Clojure source files have been translated to ClojureScript, which can easily be run in the browser. The two languages are extremely similar, but there are a few key differences (lack of ratios, macro handling) that need to be taken into account.
  • Using @DSchroer's WebAssembly build of OpenSCAD, STL generation can happen entirely within the browser. The latest release uses the Manifold geometry kernel instead, which produces renders almost 100x faster! Using OpenSCAD is still left as an option.
  • Fast CSG previews are generated using the OpenJSCAD project. I've added a new back end to the scad-clj library (which has been copied into this project due to how heavily I've edited it) to generate the OpenJSCAD objects. Since Manifold is such a fast kernel, it is also used for previews. I've written an interop layer to give Manifold the same API as OpenJSCAD.
  • CSGs are previewed with Three.JS, using the Svelte-cubed bindings.
  • The ClojureScript source files are compiled into a web worker, which is run from Svelte/TypeScript frontend.
  • Configurations are compressed with protobuf and saved to the URL. This makes it easy to share configurations with others. I've also switched to using camelcase for the JSON configuration, which makes integrating with protobuf easier.
  • The SCAD output is verified to match that generated by @tshort's original Manuform generator when using settings matching the original and turning off adjustments made by @ibnuda to the thicknesses & dimensions.
  • Confusing options have help information explaining what they do.
  • I've made a few edits to the presets and Dactyl code to create better default models. These include making TRRS jacks the default instead of RJ9, removing the Pro Micro holder since it rarely correctly attaches to the side of the case, and fixing the TRRS holder so that it's attached to the case.

Building and running

You'll first need to install Node.js dependencies with npm install. ClojureScript and protobuf files can then be built with the Makefile. After you've installed a Java runtime (for compiling ClojureScript) and the protobuf compiler (it's installed by npm install), run make to compile the files.

They compiled files are placed in the target directory. To build the website, run npm run dev.

Useful Resources

What are all these files?

  • index.html and public/: Static files used for the website
  • scripts/: Node.js scripts for testing and developing new features
  • src/: Source code
    • assets/: Models, JSON configuration, and WebAssembly files used by the frontend
    • cljs/: ClojureScript source code
      • dactyl_generator: Generate the Dactyl models. Most notably: manuform.cljs
      • dactyl_node: Entry point for generating Dactyl models from Node.js and the browser
      • scad_clj: My modifications to the scad-clj library (simplifies outputting scad code)
    • lib: Components and methods used by the frontend
    • proto: Protobuf definitions