Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Duckypad | 1,012 | 3 days ago | 46 | mit | C | |||||
Do-It-All Mechanical Macropad | ||||||||||
Sweep | 908 | 4 months ago | 1 | other | ||||||
Sweep - a small promicro based keyboard inspired by the Ferris. | ||||||||||
Mechvibes | 784 | 5 months ago | 172 | JavaScript | ||||||
Mechvibes | ||||||||||
Im Select | 677 | 4 days ago | 10 | mit | C++ | |||||
📟 Switch your input method through terminal | ||||||||||
Nxbt | 596 | a day ago | 71 | mit | Python | |||||
Control your Nintendo Switch through a website, terminal, or macro. | ||||||||||
Keymapper | 588 | 4 months ago | 143 | gpl-3.0 | Kotlin | |||||
**DEVELOPMENT STOPPED**.📱 An Android app that change what the buttons do on your devices! | ||||||||||
Pok3r Layouts | 549 | 4 years ago | 15 | |||||||
POK3R keyboard layouts for Windows and OS X/Mac | ||||||||||
K380 Function Keys Conf | 544 | a year ago | 16 | gpl-3.0 | C | |||||
Make function keys default on Logitech k380 bluetooth keyboard | ||||||||||
Switch Desktop | 388 | 7 months ago | 57 | gpl-3.0 | TypeScript | |||||
⚡️ Keyboard-driven commands to navigate your apps faster | ||||||||||
Chrome Fast Tab Switcher | 327 | 5 years ago | 10 | mit | JavaScript | |||||
:keyboard: React-based extension to quickly switch to other open Chrome tabs with just your keyboard |
Named after the Rustlang mascot, Ferris is a 34-key split keyboard that tries to be about as cute as its namesake.
Ferris is a collection of minimalistic keyboards that each focus on delivering a small set of features (mostly, typing) well.
It is fully Open-Source: the kicad files are released under the solderpad license, version 2.1. The firmware, contributed to the QMK project is released under the GPL. The software in this repository (mostly scripts) is released under the GPL. The documentation for this project has been released to the public domain under the Creative Commons terms, specifically CC0.
The Ferris is certified by the Open Source Hardware Alliance (OSHWA).
The Ferris was designed around this set of goals:
and this set of non-goals:
You may read more about how each feature (and mostly lack thereof) contributes to these goals in this write up once described as "overly long and almost pretentious" :)
There are currently two versions of the Ferris:
Before you print one yourself, feel free to have a look at https://cuddlykeyboards.com where you may purchase a kit, pre-assembled or for you to assemble yourself :)
If they don't, or you prefer to have the full experience yourself,
{version}.{variant}.release.zip
file from the latest GitHub release on this repo.For a given version, you will find a release in this repository containing a zip file with the gerber files. This should be ready to send to a PCB manufacturer for assembly. The repository also contains a bill of materials (bom.csv) with a list of the components you need and their reference number on LCSC.com. You may use another vendor for the components, as long as you make sure to get components that are equivalent.
The zip files for each release contain a file named ibom.html
.
Open this file in a web browser for the variant you are building. It contains all the information needed to assemble a keyboard, and is able to present it nicely in a contextual manner.
A few tips:
And here are some key pieces of advice about soldering from my experience assembling many Ferris keyboards.
I took many pictures while building a Ferris 0.1 base variant. The build log is here and may be of help: Part 1: build log, part 1 Part 2: build log, part 2
The Ferris keyboard is powered by QMK as its main firmware. The default keymap showcases one possible way to make a 34 keys keyboard usable and is documented in its readme upstream. Firmware for v0.1 and the Sweep is already available upstream. Support for v0.2 should land upstream pretty soon with this PR - Support for the underglow feature is missing from this PR, but will come in a subsequent PR. It works for me locally :)
Support for v0.2 is also coming to upstream zmk with this PR
I plan to write rust firmware for the v0.2 variants of the Ferris, eventually. Progress will be tracked in this issue
The philosophy of designing many simple keyboards rather than one versatile one which is slightly less good for any set of features results in an explosion in the number of designs one has to maintain.
The keep this manageable, I have automated a number of steps such as checking the Design Rules and the Electrical Rules for each PCB on every commit push, and generating release artifacts when a tag is pushed.
Because GitHub actions perform these steps automatically, you shouldn't need to make use of the build system yourself, but for maintainers or curious bystanders, here is the workflow:
./automation/configure.py
Will generate a file named build.ninja
in the root of the repository.
Then, running:
./automation/ninja.sh
will run ninja
in the ferris_automation docker container which I published to dockerhub. This means minimal local setup is needed (basically, make sure you are able to run docker) as the specific tools are already contained in that docker image.
This will produce all build and release artifacts in a local directory called build
.
If for a reason or another, you would prefer to run all of the tools locally rather than in docker
, you may read the ferris_automation Dockerfile for inspiration and install the same software with the steps that work best on your platform.
In that case, docker will still be needed for some steps as it ensured kicad_cli
can do its hackish UI manipulation in a known environment.
ferris_automation
docker imageWhen some of the scripts change in a way that will affect the ferris_automation
docker container, I need to publish a new version.
This could be done as a GitHub action, but for now it is done manually with the following steps:
From the repo root:
docker build -t pierrechevalier83/ferris_automation:latest automation
docker push pierrechevalier83/ferris_automation:latest