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.

51 lines
2.4 KiB

  1. # M0110(A) keyboard converter
  2. This is a port of the original M0110 converter from TMK to QMK. The original converter was designed to work with **ATmega32U2** and **ATmega32U4** based microcontrollers to convert Apple M0110/M0110A keyboards and M0120 numpads to USB. This port has been tested to be compatible with the [**Adafruit Feather 32U4 BLE**](https://learn.adafruit.com/adafruit-feather-32u4-bluefruit-le).
  3. ## Enabling Bluetooth for the Adafruit Feather 32U4 BLE
  4. Simply add `BLUETOOTH = AdafruitBLE` to your `rules.mk` file. This enables code specifically for the Adafruit Feather 32U4 BLE. If enabled, the device will use the `PRODUCT` and `DESCRIPTION` values from `config.h` for the device name displayed by the Feather on host devices. You can simply change these values to change the device name.
  5. ## Pins
  6. This port utilizes the same pins that the TMK converter used. `PD1` is used for `CLOCK` and `PD0` is used for the `DATA` from the keyboard. These pins can be changed in `config.h`.
  7. ## Other important hardware notes from the original TMK converter Readme:
  8. >### Hardware
  9. >--------
  10. >You can buy preassembled [TMK converter] or make yourown with AVR dev board like PJRC [Teensy].
  11. >
  12. >Port of the MCU `PD1` is assigned to `CLOCK` line and `PD0` to `DATA` by default, you can change pin configuration with editing `config.h`.
  13. >
  14. >[![M0110 Converter](http://i.imgur.com/yEp2eRim.jpg)](http://i.imgur.com/yEp2eRi.jpg)
  15. >
  16. >#### 4P4C phone handset cable
  17. >Note that original cable used with Mac is **straight** while phone handset cable is **crossover**.
  18. >
  19. ><http://en.wikipedia.org/wiki/Modular_connector#4P4C>
  20. >
  21. >[Teensy]: http://www.pjrc.com/teensy/
  22. >[TMK converter]: https://geekhack.org/index.php?topic=72052.0
  23. >
  24. >
  25. >#### Socket Pinout
  26. >- <http://pinouts.ru/Inputs/MacKeyboard_pinout.shtml>
  27. >
  28. >![Jack fig](http://www.kbdbabel.org/conn/kbd_connector_macplus.png)
  29. >
  30. >
  31. >#### Pull-up Resistor
  32. >You may need pull-up resistors on signal lines(`CLOCK`, `DATA`) in particular when you have long or coiled cable. **1k-10k Ohm** will be OK >for this purpose. In that case the converter may not read signal from keyboard correctly without pull-up resistors.
  33. >
  34. [**View the original TMK converter Readme**](https://github.com/tmk/tmk_keyboard/tree/master/converter/m0110_usb)\
  35. [**View the original TMK converter Repository**](https://github.com/tmk/tmk_keyboard/tree/master/converter/m0110_usb)
  36. ## QMK Port Changelog
  37. - 2018/08/01 - Original Release