2012-11-01 14:24:21 +09:00
Alternative Controller for HHKB Pro
===================================
2013-11-30 12:32:47 +09:00
I wanted to add some features like vi cursor and mouse keys to my [HHKB][HHKB] but its controller is not programmable and firmware source code is not open, of course. This means customizing this keyboard needs to replace original controller with programmable one.
2018-02-01 14:56:25 +09:00
This controller can work with HHKB **Professional** , **Professional 2** , **JP** and **Type-S** .
2013-07-11 16:23:53 +09:00
2018-02-01 14:56:25 +09:00
See [this thread][AltController] in geekhack.org for details.
2012-11-01 14:24:21 +09:00
[HHKB]: http://www.pfu.fujitsu.com/hhkeyboard/
2013-07-11 16:23:53 +09:00
[AltController]: http://geekhack.org/index.php?topic=12047.0
2012-11-01 14:24:21 +09:00
2015-01-16 10:21:18 +09:00
## Update
* Bluetooth module RN-42 is supported.(2015/01)
2018-02-01 14:56:25 +09:00
## Features
2012-11-01 14:24:21 +09:00
* Customizable keymap
* More keymap layers(more Fn keys)
* Mouse keys
* USB NKRO
2015-01-16 10:21:18 +09:00
* Bluetooth(RN-42)
2012-11-01 14:24:21 +09:00
2013-07-11 16:23:53 +09:00
See README of [tmk_keyboard] for more.
[tmk_keyboard]: http://github.com/tmk/tmk_keyboard
2018-02-01 14:56:25 +09:00
### Pros
2013-07-29 00:53:18 +09:00
* No risks: Everything is all reversible
* No need for PCB trace patching, case cutting or any other destructive mod
2012-11-01 14:24:21 +09:00
* Can keep original controller intact
2014-01-04 22:52:19 -05:00
* Can change all HHKB behavior as you like
2012-11-01 14:24:21 +09:00
2018-02-01 14:56:25 +09:00
### Cons
2012-11-01 14:24:21 +09:00
* Void your warranty
2013-07-11 16:23:53 +09:00
* Lose USB hub function of Pro2
2012-11-01 14:24:21 +09:00
2018-02-01 14:56:25 +09:00
## DISCLAIMER
2013-07-11 16:23:53 +09:00
I'm not a professional of electronics nor MCU programming. This may damage your HHKB.
2012-11-01 14:24:21 +09:00
And my English writing is poor, I'm not sure I can convey my notions accurately.
2018-02-01 14:56:25 +09:00
## HHKB Internals
2013-07-11 16:23:53 +09:00
See [doc/HHKB.txt ](doc/HHKB.txt ) and files under [doc/ ](doc/ ) for internal of HHKB and this controller.
2012-11-01 14:24:21 +09:00
2018-02-01 14:56:25 +09:00
## Build Firmware & Program
See [this document ](../../tmk_core/doc/build.md ) and [this ](https://github.com/tmk/tmk_keyboard/wiki#build-firmware ) first.
2012-11-01 14:24:21 +09:00
2013-07-29 00:53:18 +09:00
### Configuration
2018-02-01 14:56:25 +09:00
Build options and firmware settings are available in `Makefile` and `config.h` or `config_rn42.h` .
### Keymap
To define your own keymap create file named `keymap_<name>.c` and see [keymap document ](../../tmk_core/doc/keymap.md ) and existent keymap files.
2015-01-11 01:54:17 +09:00
2012-11-01 14:24:21 +09:00
2013-07-29 00:53:18 +09:00
### Build
2013-11-30 12:32:47 +09:00
Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. Just `make` with `KEYMAP` option like:
2012-11-01 14:24:21 +09:00
2018-02-01 14:56:25 +09:00
$ make -f Makefile.< variant > KEYMAP=< name > clean
$ make -f Makefile.< variant > KEYMAP=< name >
2015-01-16 10:21:18 +09:00
2018-02-01 14:56:25 +09:00
`Makefile` can be used for **Pro2 and Pro** USB controller, `Makefile.jp` for **JP** , `Makefile.rn42` for **Pro2** Bluetooth and `Makefile.rn42.jp` for **JP** Bluetooth.
2012-11-01 14:24:21 +09:00
2013-07-29 00:53:18 +09:00
### Program
First, push reset button on board to start bootloader.
2012-11-01 14:24:21 +09:00
2014-01-04 22:52:19 -05:00
This command programs the controller with [dfu-programmer] if the tool is installed and configured properly.
2012-11-01 14:24:21 +09:00
2015-01-16 10:21:18 +09:00
$ make -f Makefile.< variant > KEYMAP=< name > dfu
2012-11-01 14:40:24 +09:00
2014-01-04 22:52:19 -05:00
Or you can also use [FLIP] command to program. Also the tool should be installed and configured properly. FLIP GUI application is also available.
2012-11-01 14:24:21 +09:00
2015-01-16 10:21:18 +09:00
$ make -f Makefile.< variant > KEYMAP=< name > flip
2012-11-01 14:40:24 +09:00
2014-07-10 15:28:36 +09:00
2018-02-01 14:56:25 +09:00
## Hardware
2014-07-10 15:28:36 +09:00
2018-02-01 14:56:25 +09:00
### TMK Alt Controller Board
Preassmbled controller is available from [here ](https://geekhack.org/index.php?topic=71517.0 ).
2012-11-01 14:24:21 +09:00
2018-02-01 14:56:25 +09:00
You can find design files of the controller at [Keyboard Controller Board for HHKB(KiCad project) ](https://github.com/tmk/HHKB_controller ).
2013-07-11 16:23:53 +09:00
2013-07-29 00:53:18 +09:00
[dfu-programmer]: http://dfu-programmer.sourceforge.net/
[FLIP]: http://www.atmel.com/tools/FLIP.aspx