diff options
| author | Ryan <fauxpark@gmail.com> | 2020-08-25 19:03:45 +1000 |
|---|---|---|
| committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-08-29 14:30:02 -0700 |
| commit | 0f596881b36587a298568192078f9b467c51c109 (patch) | |
| tree | 187554101f88057c2f6a826ebc33a3533ec9adc6 /docs/ja | |
| parent | 15df82cdf3f5b5d81af2cc235fbfe7643cd044b9 (diff) | |
| download | qmk_firmware-0f596881b36587a298568192078f9b467c51c109.tar.gz qmk_firmware-0f596881b36587a298568192078f9b467c51c109.zip | |
Remove support for Adafruit EZ-Key (#10103)
* Remove support for Adafruit EZ-Key
* Update docs/ja/feature_bluetooth.md
Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com>
Co-authored-by: Takeshi ISHII <2170248+mtei@users.noreply.github.com>
Diffstat (limited to 'docs/ja')
| -rw-r--r-- | docs/ja/config_options.md | 4 | ||||
| -rw-r--r-- | docs/ja/feature_bluetooth.md | 8 | ||||
| -rw-r--r-- | docs/ja/getting_started_make_guide.md | 4 |
3 files changed, 2 insertions, 14 deletions
diff --git a/docs/ja/config_options.md b/docs/ja/config_options.md index 6ba7f6f1f..2a64f2ba2 100644 --- a/docs/ja/config_options.md +++ b/docs/ja/config_options.md | |||
| @@ -369,10 +369,8 @@ QMK での全ての利用可能な設定にはデフォルトがあります。 | |||
| 369 | * MIDI 制御 | 369 | * MIDI 制御 |
| 370 | * `UNICODE_ENABLE` | 370 | * `UNICODE_ENABLE` |
| 371 | * Unicode | 371 | * Unicode |
| 372 | * `BLUETOOTH_ENABLE` | ||
| 373 | * Adafruit EZ-Key HID で Bluetooth を有効にするレガシーオプション。BLUETOOTH を見てください | ||
| 374 | * `BLUETOOTH` | 372 | * `BLUETOOTH` |
| 375 | * 現在のオプションは、AdafruitEzKey、AdafruitBLE、RN42 | 373 | * 現在のオプションは、AdafruitBLE、RN42 |
| 376 | * `SPLIT_KEYBOARD` | 374 | * `SPLIT_KEYBOARD` |
| 377 | * 分割キーボード (let's split や bakingpy のキーボードのようなデュアル MCU) のサポートを有効にし、quantum/split_common にある全ての必要なファイルをインクルードします | 375 | * 分割キーボード (let's split や bakingpy のキーボードのようなデュアル MCU) のサポートを有効にし、quantum/split_common にある全ての必要なファイルをインクルードします |
| 378 | * `CUSTOM_MATRIX` | 376 | * `CUSTOM_MATRIX` |
diff --git a/docs/ja/feature_bluetooth.md b/docs/ja/feature_bluetooth.md index 4443a4e3e..f7835dd54 100644 --- a/docs/ja/feature_bluetooth.md +++ b/docs/ja/feature_bluetooth.md | |||
| @@ -7,11 +7,10 @@ | |||
| 7 | 7 | ||
| 8 | ## Bluetooth の既知のサポートハードウェア | 8 | ## Bluetooth の既知のサポートハードウェア |
| 9 | 9 | ||
| 10 | 現在のところ Bluetooth のサポートは AVR ベースのチップに限られます。Bluetooth 2.1 については、QMK は RN-42 モジュールと、Bluefruit EZ-Key をサポートしますが、後者はもう生産されていません。より最近の BLE プロトコルについては、現在のところ Adafruit Bluefruit SPI Friend のみが直接サポートされています。iOS デバイスに接続するには、BLE が必要です。iOS はマウス入力をサポートしないことに注意してください。 | 10 | 現在のところ Bluetooth のサポートは AVR ベースのチップに限られます。Bluetooth 2.1 については、QMK は RN-42 モジュールをサポートします。より最近の BLE プロトコルについては、現在のところ Adafruit Bluefruit SPI Friend のみが直接サポートされています。iOS デバイスに接続するには、BLE が必要です。iOS はマウス入力をサポートしないことに注意してください。 |
| 11 | 11 | ||
| 12 | | ボード | Bluetooth プロトコル | 接続タイプ | rules.mk | Bluetooth チップ | | 12 | | ボード | Bluetooth プロトコル | 接続タイプ | rules.mk | Bluetooth チップ | |
| 13 | |----------------------------------------------------------------|----------------------------|----------------|---------------------------|--------------| | 13 | |----------------------------------------------------------------|----------------------------|----------------|---------------------------|--------------| |
| 14 | | [Adafruit EZ-Key HID](https://www.adafruit.com/product/1535) | Bluetooth Classic | UART | `BLUETOOTH = AdafruitEZKey` | | | ||
| 15 | | Roving Networks RN-42 (Sparkfun Bluesmirf) | Bluetooth Classic | UART | `BLUETOOTH = RN42` | RN-42 | | 14 | | Roving Networks RN-42 (Sparkfun Bluesmirf) | Bluetooth Classic | UART | `BLUETOOTH = RN42` | RN-42 | |
| 16 | | [Bluefruit LE SPI Friend](https://www.adafruit.com/product/2633) | Bluetooth Low Energy | SPI | `BLUETOOTH = AdafruitBLE` | nRF51822 | | 15 | | [Bluefruit LE SPI Friend](https://www.adafruit.com/product/2633) | Bluetooth Low Energy | SPI | `BLUETOOTH = AdafruitBLE` | nRF51822 | |
| 17 | 16 | ||
| @@ -29,16 +28,11 @@ | |||
| 29 | 28 | ||
| 30 | Bluefruit UART friend は SPI friend に変換することができますが、これにはMDBT40 チップへの直接の再書き込みとはんだ付けが[必要です](https://github.com/qmk/qmk_firmware/issues/2274)。 | 29 | Bluefruit UART friend は SPI friend に変換することができますが、これにはMDBT40 チップへの直接の再書き込みとはんだ付けが[必要です](https://github.com/qmk/qmk_firmware/issues/2274)。 |
| 31 | 30 | ||
| 32 | ## Adafruit EZ-Key hid | ||
| 33 | これには[ハードウェアの変更](https://www.reddit.com/r/MechanicalKeyboards/comments/3psx0q/the_planck_keyboard_with_bluetooth_guide_and/?ref=search_posts)が必要ですが、Makefile を使って有効にすることができます。ファームウェアは引き続き USB 経由で文字を出力するため、コンピュータ経由で充電する場合は注意してください。任意にオフにするために Bluefruit 上にスイッチを持つことは理にかなっています。 | ||
| 34 | |||
| 35 | |||
| 36 | <!-- FIXME: Document bluetooth support more completely. --> | 31 | <!-- FIXME: Document bluetooth support more completely. --> |
| 37 | ## Bluetooth の Rules.mk オプション | 32 | ## Bluetooth の Rules.mk オプション |
| 38 | これらのうちの1つだけを使ってください | 33 | これらのうちの1つだけを使ってください |
| 39 | * BLUETOOTH_ENABLE = yes (レガシーオプション) | 34 | * BLUETOOTH_ENABLE = yes (レガシーオプション) |
| 40 | * BLUETOOTH = RN42 | 35 | * BLUETOOTH = RN42 |
| 41 | * BLUETOOTH = AdafruitEZKey | ||
| 42 | * BLUETOOTH = AdafruitBLE | 36 | * BLUETOOTH = AdafruitBLE |
| 43 | 37 | ||
| 44 | ## Bluetooth キーコード | 38 | ## Bluetooth キーコード |
diff --git a/docs/ja/getting_started_make_guide.md b/docs/ja/getting_started_make_guide.md index 0d39583a1..cbc824de8 100644 --- a/docs/ja/getting_started_make_guide.md +++ b/docs/ja/getting_started_make_guide.md | |||
| @@ -106,10 +106,6 @@ make コマンド自体にもいくつかの追加オプションがあります | |||
| 106 | 106 | ||
| 107 | 詳細と制限については、[Unicode ページ](ja/feature_unicode.md) を見てください。 | 107 | 詳細と制限については、[Unicode ページ](ja/feature_unicode.md) を見てください。 |
| 108 | 108 | ||
| 109 | `BLUETOOTH_ENABLE` | ||
| 110 | |||
| 111 | これによりキーコードをワイヤレスで送信するために Bluefruit EZ-key と連動することができます。D2 と D3 ピンを使います。 | ||
| 112 | |||
| 113 | `AUDIO_ENABLE` | 109 | `AUDIO_ENABLE` |
| 114 | 110 | ||
| 115 | C6 ピン(抽象化が必要)でオーディオ出力できます。詳細は[オーディオページ](ja/feature_audio.md)を見てください。 | 111 | C6 ピン(抽象化が必要)でオーディオ出力できます。詳細は[オーディオページ](ja/feature_audio.md)を見てください。 |
