• Stars
    star
    817
  • Rank 55,386 (Top 2 %)
  • Language
    Python
  • License
    Other
  • Created over 4 years ago
  • Updated over 3 years ago

Reviews

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

Repository Details

A low profile split keyboard designed to satisfy one single use case elegantly

Meet Ferris, a minimalistic keyboard

Named after the Rustlang mascot, Ferris is a 34-key split keyboard that tries to be about as cute as its namesake.

Ferris

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).

Status

Validate ninja build file Format python code

Design philosophy

The Ferris was designed around this set of goals:

  • Comfort
  • Aesthetics
  • Portability
  • Ease of assembly
  • Low-Cost
  • Low-Profile
  • 34 keys
  • Hackable
  • USB-C
  • No compromise

and this set of non-goals:

  • Reversible PCB used for both hands
  • Pro-micro/Elite C/Proton C support
  • Hot-Swap support
  • Multi-switches support
  • Support for any feature (RGB, OLED, encoders, ...) that is not of interest to the user

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" :)

Versions and variants

There are currently two versions of the Ferris:

  • v0.1 used an atmega32u4 microcontroller.
  • v0.2 is in advanced prototyping stage and uses an Arm chip (STM32F072CBT6) which is more capable and cheaper than the atmega32u4. v0.2 also adds better ESD protection. The plan for v0.2 is to eventually offer full rust firmware as an alternative to qmk.

How do I print one?

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,

  • Decide which variant/version you want to print (refer to individual readme files in subdirectories for a short description of each variant).
  • Download the {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.

How do I assemble one?

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:

  • Be mindful of the orientation of components.
    • The interactive bom has an option to "highlight first pin". You should match the pin drawn on the component to the side of the PCB that is highlighted. For a diode, the "first pin" is indicated with the cathode bar.
  • You can change the order in which the components are displayed by clicking the column headers.
    • I like to sort the components by decreasing quantity to start with the most tedious work and end with the fun :)
  • Most of the components are SMD mounted and can be soldered with a soldering iron, solder wire and flux (optional but strongly recommended).
    • If you are assembling a Ferris 0.2 - Bling, you will need a hot air station to place the LED driver chip.

And here are some key pieces of advice about soldering from my experience assembling many Ferris keyboards.

  • If possible, use a wedge tip or other tip with a large enough surface. Pointy tips are harder, especially for drag soldering as they don't deliver as much heat at once.
  • Don't use too much solder or you will have to wick it away and start again.
    • This especially applies to the USB C area and the small chips.
  • Don't be shy on the flux: it really helps the solder flow where it should and keep away from surfaces it shouldn't go to.
  • Don't use too much heat to avoid damaging the components. I've had good results with 350C for unleaded rosin core solder wire.
  • Don't touch any component for too long with the iron to avoid heat damage. If you're not getting it right in a few seconds, let it cool down add more flux and try again.
  • Be sure to test every diode is properly soldered before soldering on the switches as the diodes are located under the switches and won't be accessible later on.

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

Where is the firmware?

QMK

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 :)

ZMK

Support for v0.2 is also coming to upstream zmk with this PR

Rust firmware

I plan to write rust firmware for the v0.2 variants of the Ferris, eventually. Progress will be tracked in this issue

Automation

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.

GitHub Actions

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.

Manually running within docker

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.

Running on the local system

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.

Updating the ferris_automation docker image

When 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

More Repositories

1

workstyle

Sway workspaces with style
Rust
180
star
2

rust-dwm-status

A status bar for dwm written in rust
Rust
29
star
3

find_unicode

Find Unicode characters the easy way: from the command line
CSS
27
star
4

2048-rs

Rust implementation of 2048 game
Rust
20
star
5

matrix_display

A rust library to visualise pretty matrixes in cli
Rust
13
star
6

kicad_cli

Run some useful kicad functionality from the command line
Rust
9
star
7

keyboard_footprints

Footprints used in the keyboards I'm designing
7
star
8

rwm

rwm - rustic window manager
Rust
6
star
9

dotfiles

My most important dotfiles
Shell
4
star
10

ferris_pcb_art

PCB Art (copper pads and silkscreens) for the Ferris keyboard
4
star
11

chess-rs

A rust cli frontend for chess
Rust
4
star
12

slider

A Slider Puzzle implemented in rust
Rust
3
star
13

advent_of_code_2020

My submissions for this year's advent of code challenge
Rust
3
star
14

dwm

My clone of dwm with config changes
C
3
star
15

bongo_light

Rust
3
star
16

unicode_types

Types to represent all the unicode characters
Rust
2
star
17

advent_of_code_2022

My solutions to the challenges from Advent of Code 2022
Rust
2
star
18

safenetwork_remark_template

SAFE Network themed remark.js presentation template
HTML
2
star
19

labcoat.nvim

Vim plugin for the labcoat family of configurable colorschemes
Lua
2
star
20

snake-rs

A cli snake game written in rust
Rust
1
star
21

st

Personal configuration for st (solarized dark, scrolling, HiDPI)
C
1
star
22

snake

A go tutorial
Go
1
star
23

talk_24_09_2019

Empowered, A gentle invitation to Rust - Talk at the Rust London User Group on 04/09/2019
HTML
1
star
24

euler

Project Euler (my solutions with C++17 and range-v3)
C++
1
star
25

talk_15_12_2018

Slides from talk at the RustRush conference
HTML
1
star
26

zaphod-config

C
1
star
27

palette-rs

A little utility to display your terminal's ansi color palette
Rust
1
star
28

tabbed

My personalized fork of tabbed from suckless
C
1
star
29

natural_slice

Encoding and decoding various properties of slices into natural numbers using Kociemba's algorithms
Rust
1
star
30

2048

A simple command line implementation of the popular 2048 game.
C++
1
star
31

advent_of_code_2021

My solutions to the challenges from Advent of Code 2021
Rust
1
star
32

snake-ui

A python tutorial
Python
1
star