Firmware for the Keyboardio Model 01 and other keyboards with AVR or ARM MCUs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Jesse Vincent fde137509b
Add a pseudo-test that shows off the name of the test source file for generated tests
4 years ago
.travis Rework our travis config to be a bit more efficient, moving the work dir to a ramdisk, checking less stuff out of git, etc. 4 years ago
bin Teach docker-run to run interactively or to be able to run from a non-interactive process like a git hook 4 years ago
docs ~[QuKeys] add doc about setOverlapThreshold(100) 4 years ago
etc Fix an embarassing typo. 4 years ago
examples Switch to activation-order for Layers 4 years ago
extras Initial import 8 years ago
src Remove stale commented definition of IS_MACRO 4 years ago
test/MatrixAddr Update linear addressing branch for firmware drift 5 years ago
testing Add a pseudo-test that shows off the name of the test source file for generated tests 4 years ago
tests There's no real need to vary the generated test 4 years ago
.gitignore Add a first version of a Kaleidoscope testing DSL. 4 years ago
.kaleidoscope-builder.conf Remove the hook for the now-removed layout transformation script 8 years ago
.readthedocs.yml try to get rtd to see our master doc 5 years ago
.travis.yml Switch away from some travis-specific targets that were noops 4 years ago
CODE_OF_CONDUCT.md Code of conduct 7 years ago
CONTRIBUTING.md Remove files we do not need in the monorepo 6 years ago
LICENSE License clarificataion & copyright headers 6 years ago
Makefile Add a utility makefile target to get shell in docker 4 years ago
README.md Add a note about symlinks on Windows, thanks to Johannes Becker. 4 years ago
library.properties library.properties: Remove the AVR architecture restriction 5 years ago

README.md

Kaleidoscope

Flexible firmware for Arduino-powered keyboards.

This package contains the "core" of Kaleidoscope and a number of example firmware "Sketches".

If you're just getting started with the Keyboardio Model 01, the introductory docs are here and the source for the basic firmware package is here: https://github.com/keyboardio/Model01-Firmware. It's probably a good idea to start there, learn how to modify your keymap and maybe turn some modules on or off, and then come back to the full repository when you have more complex changes in mind.

Getting Started

Setup the Arduino IDE

Setup the Arduino IDE on your system. Make sure you install at least version 1.8.6, since older version may not support all required features.

Get into the right directory

macOS

mkdir -p $HOME/Documents/Arduino/hardware
cd $HOME/Documents/Arduino/hardware

Linux

mkdir -p $HOME/Arduino/hardware
cd $HOME/Arduino/hardware

Windows (Assuming cmd)

mkdir %userprofile%\Documents\Arduino\hardware
cd %userprofile%\Documents\Arduino\hardware

Install the libraries and hardware definitions

Clone the hardware definitions

Because git for Windows doesn't always have symlink support enabled by default, you may need to enable it for Kaleidoscope. To do that, add '-c core.symlinks=true' to your commandline. On all other platforms, that option is safe, but not necessary, as symlinks should work by default.

git clone -c core.symlinks=true --recursive https://github.com/keyboardio/Kaleidoscope-Bundle-Keyboardio.git keyboardio

Build the Kaleidoscope Firmware for your keyboard

(This part assumes you're building firmware for the Keyboardio Model 01)

# Go to your device firmware directory
cd keyboardio/avr/libraries/Model01-Firmware

# Build your firmware!
make


# Install your firmware
make flash

<3 jesse

BuildStatus