You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

README.md 3.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Alternative Controller for HHKB Pro
  2. ===================================
  3. 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.
  4. This controller can work with HHKB **Professional**, **Professional** 2, **JP** and **Type-S**.
  5. See [this thread][AltController] in geekhack.org.
  6. [HHKB]: http://www.pfu.fujitsu.com/hhkeyboard/
  7. [AltController]: http://geekhack.org/index.php?topic=12047.0
  8. ##Features
  9. * Customizable keymap
  10. * More keymap layers(more Fn keys)
  11. * Mouse keys
  12. * USB NKRO
  13. See README of [tmk_keyboard] for more.
  14. [tmk_keyboard]: http://github.com/tmk/tmk_keyboard
  15. ###Pros
  16. * No risks: Everything is all reversible
  17. * No need for PCB trace patching, case cutting or any other destructive mod
  18. * Can keep original controller intact
  19. * Can change all HHKB behavior as you like
  20. ###Cons
  21. * Void your warranty
  22. * Lose USB hub function of Pro2
  23. ##DISCLAIMER
  24. I'm not a professional of electronics nor MCU programming. This may damage your HHKB.
  25. And my English writing is poor, I'm not sure I can convey my notions accurately.
  26. ##Documents
  27. See [doc/HHKB.txt](doc/HHKB.txt) and files under [doc/](doc/) for internal of HHKB and this controller.
  28. ##Build Firmware & Program
  29. See [this document](../../doc/build.md) first.
  30. ### Configuration
  31. If your target is **HHKB JP** you need to set `HHKB_JP` build option in `Makefile` or use `Makefile.jp` instead of `Makefile`.
  32. If you use other than **TMK Alt Controller Board** set proper `MCU`, `BOOTLOADER_SIZE` and other build options in `Makefile` and `config.h`. At least PJRC Teensy requires changing `BOOTLOADER_SIZE` to 512.
  33. ### Build
  34. Several version of keymap are available in advance but you are recommended to define your favorite layout yourself. Just `make` with `KEYMAP` option like:
  35. $ make KEYMAP=[hasu|hhkb|spacefn|<name>]
  36. $ make -f Makefile.jp KEYMAP=[jp|<name>] # for HHKB JP
  37. ### Program
  38. First, push reset button on board to start bootloader.
  39. This command programs the controller with [dfu-programmer] if the tool is installed and configured properly.
  40. $ make dfu
  41. $ make -f Makefile.jp dfu # for HHKB JP
  42. Or you can also use [FLIP] command to program. Also the tool should be installed and configured properly. FLIP GUI application is also available.
  43. $ make flip
  44. $ make -f Makefile.jp flip # for HHKB JP
  45. Use [Teensy Loader] if your controller is Teensy/Teensy++.
  46. ##Keymap
  47. To define your own keymap create file named `keymap_<name>.c` and see [keymap document](../../doc/keymap.md) and existent keymap files.
  48. ##Hardware
  49. You have some options for hardware. Development boards with USB AVR family(ATMega32U4, AT90USB1286) like Teensy will work while MegaAVR with [V-USB] library is also cheaper option for DIY.
  50. ###1. TMK Alt Controller Board
  51. Design files are available at [Keyboard Controller Board for HHKB(KiCad project)](https://github.com/tmk/HHKB_controller) and see [Controller Distribution thread](http://geekhack.org/index.php?topic=56494.0) if you get an assembled one.
  52. ###2. PJRC Teensy
  53. See [this thread](http://geekhack.org/index.php?topic=57008.0).
  54. ###3. V-USB version
  55. See [V-USB controller for HHKB](doc/V-USB.md).
  56. [LUFA]: http://www.fourwalledcubicle.com/LUFA.php
  57. [PJRC]: http://www.pjrc.com/teensy/usb_keyboard.html
  58. [dfu-programmer]: http://dfu-programmer.sourceforge.net/
  59. [FLIP]: http://www.atmel.com/tools/FLIP.aspx
  60. [Teensy Loader]: http://www.pjrc.com/teensy/loader.html
  61. [V-USB]: http://www.obdev.at/products/vusb/index.html