Skip to content

Commit

Permalink
TKC1800 refactor and Configurator visual fixes (#4870)
Browse files Browse the repository at this point in the history
* TKC1800: refactor

- tkc1800.h
  - updated to use #pragma once
  - visual alignment
- update config.h files to use #pragma once
- update all keymaps to use #include QMK_KEYBOARD_H
- delete redundant mod mask, KC_TRNS, and KC_NO definitions
- reformat keymap layers for readability
- add block comment for Function layer in default keymap
- delete commented action_get_macro code blocks (deprecated function)
- update files to better conform with QMK coding conventions
- update smt keymap to use set_single_persistent_default_layer (instead of persistent_default_layer_set)
- replace instances of `?=` with `=` in rules.mk

* TKC1800: Configurator visual fixes

- correct key sizes and positioning
- reformat file so each physical key object has its own line for readability
- update and add `label` keys for readability

* TKC1800: readme update

- fix image gallery link
- update Hardware Supported and Hardware Availability lines
- update make example (add :default suffix)
- update QMK Docs links (Newbs Guide; grammar)

* Add missing semicolons to smt keymap
  • Loading branch information
noroadsleft authored and mechmerlin committed Jan 18, 2019
1 parent e2f7c3d commit 12406c6
Show file tree
Hide file tree
Showing 13 changed files with 344 additions and 826 deletions.
11 changes: 5 additions & 6 deletions keyboards/tkc1800/README.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
The Key Company TKC1800
===

![TKC1800](https://imgur.com/a/Xlttp)
[TKC1800 Image Gallery](https://imgur.com/a/Xlttp)


The Key Company TKC1800 is a Cherry 1800 form factor replacement PCB utilizing the AT90USB1286 microcontroller.

Keyboard Maintainer: [Terry Mathews](https://github.com/TerryMathews/)
Hardware Supported: AT90USB1286
Hardware Availability: Via GB
Hardware Supported: TKC1800 PCB
Hardware Availability: [TheKey.Company](https://thekey.company/collections/tkc-1800)


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

make tkc1800
make tkc1800:default

See [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) then the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information.
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
5 changes: 1 addition & 4 deletions keyboards/tkc1800/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef CONFIG_H
#define CONFIG_H
#pragma once

#include "config_common.h"

Expand Down Expand Up @@ -182,5 +181,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

/* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */
//#define MIDI_TONE_KEYCODE_OCTAVES 1

#endif
Loading

0 comments on commit 12406c6

Please sign in to comment.