0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

自作キーボード「Helix」接続時にMacのスリープがすぐ解除される問題の対策

Posted at

問題

自作キーボード「Helix rev3 LP」を接続したMacをスリープさせてもすぐに復帰してしまう。

環境

  • MacBook Pro (13-inch, 2020, Thunderbolt 3ポートx 4, Intel Core i7)
  • macOS Ventura 13.6.1

対策

設定ファイルに以下のコードを追加する。

config.h
#define MATRIX_MASKED
keymap.c
const matrix_row_t matrix_mask[MATRIX_ROWS] = {
    0b00111111,
    0b00111111,
    0b00111111,
    0b01111111,
    0b01111111,
    0b00111111,
    0b00111111,
    0b00111111,
    0b01111111,
    0b01111111,
};
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?