qmk-dactyl-manuform-a/keyboards/ckeys/thedora
James Young 84ea77ead6
Remove `BOOTMAGIC_ENABLE = lite` option (#15002)
* remove BOOTMAGIC_ENABLE=lite setting

* change keyboard BOOTMAGIC_ENABLE rules

Edits keyboard-level instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`.

* change keyboard BOOTMAGIC_ENABLE inline comments

Edits keyboard-level BOOTMAGIC_ENABLE inline comments to "Enable Bootmagic Lite".

* change keymap BOOTMAGIC_ENABLE rules

Edits keymap-level instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`.

* change keymap BOOTMAGIC_ENABLE inline comments

Edits/adds keymap-level BOOTMAGIC_ENABLE inline comments to read "Enable Bootmagic Lite".

* change layout/user BOOTMAGIC_ENABLE rules/comments

Edits instances of `BOOTMAGIC_ENABLE = lite` to `BOOTMAGIC_ENABLE = yes`.

Edits/adds keymap-level BOOTMAGIC_ENABLE inline comments to read "Enable Bootmagic Lite".

* update non-rules.mk BOOTMAGIC_ENABLE references in keyboards/

* remove docs references to Full Bootmagic

* convert data-driven Bootmagic Lite instances

* remove Bootmagic Lite bodge from data-driven generation

* Merge remote-tracking branch 'upstream/develop' into rm/bootmagic-full_q4a

* update docs/ja/config_options.md per mtei

* update docs/faq_misc.md per mtei

Remove remaining Full Bootmagic reference.
2021-11-05 08:18:09 +11:00
..
keymaps/default cKeys theDora Refactor (#14495) 2021-09-19 11:52:54 -07:00
config.h Remove unused `IS_COMMAND()` instances and Magic Key definitions (#14610) 2021-09-26 02:57:20 -07:00
info.json cKeys theDora Refactor (#14495) 2021-09-19 11:52:54 -07:00
readme.md cKeys theDora Refactor (#14495) 2021-09-19 11:52:54 -07:00
rules.mk Remove `BOOTMAGIC_ENABLE = lite` option (#15002) 2021-11-05 08:18:09 +11:00
thedora.c cKeys theDora Refactor (#14495) 2021-09-19 11:52:54 -07:00
thedora.h cKeys theDora Refactor (#14495) 2021-09-19 11:52:54 -07:00

readme.md

theDora Board

Thedora Board

A 4x5 keyboard with rotary encoder, QWIIC connector, and header pinouts for easy access to all pins on the Proton C. This keyboard was built for QMK exploration big and small. What will you discover next?

Make example for this keyboard (after setting up your build environment):

make ckeys/thedora:default

See the build environment setup and the make instructions for more information. Brand new to QMK? Start with our [Complete Newbs Guide](Complete Newbs Guide).


Slides

Slides can be found at: https://ckeys.org/slides/exboard/

Case Design

The acrylic laser cutter file is coming soon!

PCB Design

All cKeys PCBs are open source. However, this one has not been posted yet because it needs to be cleaned up a bit! Coming soon!

Firmware

If you want to reflash the pre-installed firmware, use the .bin file for Proton C. Flash with the QMK Toolbox or via the command line.

Building for Proton C: make ckeys/thedora:default

Search for Bootloader Device: make ckeys/thedora:default:flash You will begin seeing output of the host searching for the bootloader device, ERROR: Bootloader not found. Trying again in 5s.

Enter DFU-Bootloader Mode: Reset the controller. Press ADMIN + RESET or, if accessible, press the reset button on the Proton C microcontroller.

Default Layout

You can find the default layout in thedora/keymaps/default/keymap.c

Rotary Encoder

This is the bit of code at the end of keymap.c that needs to changed if you want to change the behavior of the rotary encoder.

bool encoder_update_user(uint8_t index, bool clockwise) {
  if (index == 0) { /* First encoder */
    if (clockwise) {
      tap_code(KC_PGDN); // What the rotary encoder repeatedly does when turned right.
    } else {
      tap_code(KC_PGUP); // What it does when turned to the left.
    }
  }
    return true;
}

The Dora Board