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-05-21 11:06:20 -04:00
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-05-21 11:06:20 -04:00
## Quick-start guide for the pre-assembled hhkb controller
1. Build a custom keyboard layout using the online tool
* Use Chrome if the site does not behave as expected
* Make sure to generate the file using the right template
* English
* [hhkb with blue-tooth ](http://www.tmk-kbd.com/tmk_keyboard/editor/unimap/?hhkb_rn42 )
* [hhkb with USB-only ](http://www.tmk-kbd.com/tmk_keyboard/editor/unimap/?hhkb )
* JP
* [hhkb with blue-tooth ](http://www.tmk-kbd.com/tmk_keyboard/editor/unimap/?hhkb_jp_rn42 )
* [hhkb with USB-only ](http://www.tmk-kbd.com/tmk_keyboard/editor/unimap/?hhkb_jp )
1. Save the `.hex` file to your computer; note this is all you need to generate
a custom layout with most of the available features (including mouse control)
* Check-out [the last third of this video ](https://www.youtube.com/watch?v=TYmAb8zOPWU&t=561s )
to get an idea of how to build your own layout; it includes how to load to the firmware using FLIP< P >
1. Download and install the `dfu-programmer` (the alternative to FLIP), open-source available
for Windows, Linux, and Mac OS. e.g., for Mac OS: `brew install dfu-programmer` < P >
_Note: This bootloader is all that is required to load/flash the firmware created
using the online tool. You do not need the full `avr-gcc` development stack
because you created the required `.hex` file using the online tool instead._
1. Please read and understand this next step in full before running the
following concatenated sequence of commands < P >
```
$ sleep 20 & & dfu-programmer atmega32u4 erase --force & & dfu-programmer atmega32u4 flash < your_downloaded_file > .hex & & dfu-programmer atmega32u4 reset
```
* Run this command from the directory where you saved your `.hex` file
* `sleep 20` gives you time to switch your controller to a programmable mode
by hitting the red button located on your controller
* Once in this mode, you will no longer have access to your keyboard; that's
ok because the rest of the commands are concatenated together to run without
needing further input from the keyboard
* Once you switch the controller to the programmable state (by hitting the
red button), the `dfu-programmer` will automatically detect your controller (`man
dfu-controller` for details)
* `&& dfu-programmer...` are the concatenated commands that clear
the old, load the new and restart your controller with the new firmware.
These commands execute automatically once the ~ 20 seconds have passed.
* While this is not expected, in the event the bootloader fails to load
your `.hex` file, disconnect and reconnect your keyboard's USB to
re-establish the normal mode of operation required to troubleshoot.
* In the event of an issue, please submit an issue on github to help us
improve the documentation.
2012-11-01 14:24:21 +09:00
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
2018-05-21 11:06:20 -04: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