1
0
Fork
You've already forked kaleidoscope
0
No description
  • C++ 81.7%
  • C 8%
  • Python 7.8%
  • CMake 0.6%
  • Makefile 0.6%
  • Other 1.3%
Find a file
2025年04月05日 22:06:15 +02:00
.github Set up Kaleidoscope to install the nRF52 Arduino core 2025年03月24日 14:27:19 -07:00
bin When we are building our own package index file, the packager needs to point to our own name 2024年11月11日 14:22:26 -08:00
docs Add a new host connection status hook 2025年03月24日 16:28:41 -07:00
etc Set up Kaleidoscope to install the nRF52 Arduino core 2025年03月24日 14:27:19 -07:00
examples Owl mods for Model 100 2025年04月05日 22:06:15 +02:00
plugins Keyclick plugin 2025年03月24日 18:05:51 -07:00
src Initial implementation of a battery gauge driver system and the MAX17048 battery gauge driver for the chip we use in the Preonic 2025年03月24日 18:05:51 -07:00
test/MatrixAddr Format codebase with clang-format 2022年03月28日 12:41:38 -05:00
testing Explicitly pass quiet into the recursive make invocation to make overriding the QUIET configuration more straightforward 2024年12月24日 11:07:44 -05:00
tests Keyclick plugin 2025年03月24日 18:05:51 -07:00
.clang-format Update our clang-format config with @gedankenexperimenter's recommended clang-format-15 settings 2023年12月21日 11:52:37 -08:00
.cpplint Make cpplint look at c and hpp files, too 2025年03月24日 13:24:22 -07:00
.cpplint-noisy Make cpplint look at c and hpp files, too 2025年03月24日 13:24:22 -07:00
.gitignore Bluefruit API overhaul and power management 2025年03月24日 16:28:41 -07:00
.iwyu_ignore Ignore files from gtest and examples when running IWYU 2022年05月08日 12:48:58 -05:00
.readthedocs.yml Next step of trying to get readthedocs to build again 2024年03月06日 13:19:03 -08:00
CODE_OF_CONDUCT.md Code of conduct 2017年05月12日 21:06:58 -07:00
CONTRIBUTING.md CONTRIBUTING.md: Add a very short section about how to accept the DCO 2018年08月22日 07:05:36 +02:00
library.properties dota linkage no longer appears to provide a space advantage on AVR and 2024年01月23日 12:25:30 -08:00
LICENSE Add MCU Vendor Firmware Library Additional Permission to LICENSE 2025年02月11日 13:42:41 -08:00
Makefile Set up Kaleidoscope to install the nRF52 Arduino core 2025年03月24日 14:27:19 -07:00
README.md Fix typo in README 2024年12月07日 10:49:44 -08:00

Kaleidoscope

Flexible firmware for Arduino-powered keyboards.

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

Getting Started

If you want to use Kaleidoscope to customize or compile a "sketch" to power a supported keyboard, the fastest way to get started is to use the Arduino IDE. You can find setup instructions on kaleidoscope.readthedocs.io

If you prefer to work from the command line or intend to work on Kaleidoscope itself, please follow the instructions below. It's important to note that the Arduino IDE needs the source code laid out in a slightly different arrangement than you'll find in this repository. If you want to use the Arduino IDE, you should follow these instructions instead. Even if you're using the command line, you may want to refer to the docs for troubleshooting steps.

Use git to check out a copy of Kaleidoscope

  1. Open a commandline shell and navigate to where you want to check out Kaleidoscope.

For the purposes of this tutorial, we'll assume your checkout is in a directory called Kaleidoscope inside a directory called git in your home directory.

$ mkdir ${HOME}/git
$ cd ${HOME}/git
  1. Download the latest version of Kaleidoscope
$ git clone https://github.com/keyboardio/Kaleidoscope
  1. Ask Kaleidoscope to install the compiler toolchain, arduino-cli and platform support
$ cd ${HOME}/git/Kaleidoscope
$ make setup
  1. Tell your shell where to find your Kaleidoscope installation. This example is for bash. If you're using another shell, consult the shell's documentation for instructions about how to set an environment variable
$ export KALEIDOSCOPE_DIR=${HOME}/git/Kaleidoscope
$ echo "export KALEIDOSCOPE_DIR=${HOME}/git/Kaleidoscope" >> ${HOME}/.bash_profile
  1. Build the Kaleidoscope Firmware for your keyboard

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

$ cd examples/Devices/Keyboardio/Atreus
$ make compile
  1. Install your firmware
$ make flash

<3 jesse