解决MacOS机械键盘按键错乱的问题

先说说本人配置:

1.键盘为TESORO TS-G7N(108键的cherry红轴 当时买成179 ☺☺ 强烈安利!!性价比超高!!)

2.电脑和系统的情况
电脑配置.png

解决方法(目前有两种):

1.第一种方法,使用转接头usb->ps/2->usb,貌似淘宝上有卖的,但不稳定,且又要等物流,先放弃。

2.第二种方法,利用软件更改,本着程序员刻苦钻研的精神,遂决定用它了,那么踩坑之旅就此开始了

  • 找到了一个大佬的库 https://github.com/thefloweringash/iousbhiddriver-descriptor-override ,如果有支持的键盘,下载软件安装一下就行了
    支持列表为:

Supported Devices

  • Noppoo Choc Mini (1006:0022, 1007:8400)
  • Noppoo Choc Mid (04d9:1829)
  • Noppoo Choc Pro (04f3:5a5a, 06fe:104e)
  • Tt eSPORTS Poseidon Z (0566:3067)
  • Tt eSPORTS Poseidon ZX (0566:3063)
  • Ozone StrikeBattle (04d9:a096)
  • Patech JP-PC35B (04d9:a0cd) (untested)
    Including the support from the [original project]>(https://github.com/thefloweringash/iousbhiddriver-descriptor->override#acknowledgements) for
  • Griffin PowerMate
  • Macally iShock

what!没有我的这款键盘,这就很难受了,死马当活马医吧,抱着试一试的态度直接下载安装https://thefloweringash.com/iousbhiddriver-descriptor-override/downloads/这里面的最新版,看看是否能碰巧可以用上。然而并没有什么用,依然乱键

  • 这可怎么玩儿??不急,仔细浏览了一下大佬的文档发现可以添加自己的键盘信息在里面

Unsupported Devices
The Noppoo devices have a range of identifiers and descriptors. If a device is not supported, there is an experimental feature that will generate the Info.plist section for any connected device that has the Noppoo-style overlapping descriptors.
# dependencies
brew install libusb
bundle install --without ""
# build
rake scan
A file for your keyboard will be generated in the descriptors directory. Follow the instructions in the previous section to install the resulting module.

This feature is experimental, but works for limited test cases. If the resulting .kext works with your keyboard, submit a pull request with the new descriptors, otherwise open an issue with the new descriptors.

大佬的意思大概是:没有的设备可以通过扫描添加进去。

好吧,那就开始弄吧。
1.先把整个项目下载下来,Download Zip;
2.按大佬步骤做:

# dependencies
brew install libusb
bundle install --without ""
# build
rake scan

打开终端输入brew install libusb, 等等,哎呀我去。。。第一步就直接凉了(应该是我没怎么用过mac),提示:

-bash: brew: command not found

注意啦,第一个坑来了!
百度一番,说是要修改.bash_profile文件

sudo vim .bash_profile
输入密码之后添加下一行
export PATH=/usr/local/bin:$PATH
最后记得
source .bash_profile使配置修改生效。
×_× 没有用!

算了算了,继续找找吧,发现需要安装Homebrew(应该用mac的程序员都会安装这个吧)
看官网,安装简单一句话的事儿:

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

左等右等,我去 又报错了!

curl: (7) Failed to connect to raw.githubusercontent.com port 443: Operation

让我来看看什么原因呢,貌似网络不行,得用外网!寻寻觅觅找了个梯子,搞了半天还是不行!最终多次尝试之下找到了一个方法:
①https://raw.githubusercontent.com/Homebrew/install/master/install直接访问这网站,最好用梯子。将网页的内容复制下来保存为brew_install.rb文件;
②用文本编辑器,将文件中的内容

BREW_REPO = "https://github.com/Homebrew/brew".freeze
替换为清华源
BREW_REPO = "https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git".freeze

③用终端,进入存放这个文件的目录输入 ruby brew_install.rb,等待慢慢安装
④当出现这个时,不用等了,直接终止命令

==> Tapping homebrew/core
Cloning into '/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core'...

⑤用终端,进入taps目录下的homebrew目录,如果没有就手动创建目录,等待clone homebrew-core

cd /usr/local/Homebrew/Library/Taps/homebrew
git clone https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

⑥clone完成后,将homebrew切换为清华镜像

cd "$(brew --repo)"

git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/brew.git

cd "$(brew --repo)/Library/Taps/homebrew/homebrew-core"

git remote set-url origin https://mirrors.tuna.tsinghua.edu.cn/git/homebrew/homebrew-core.git

brew update

⑦终端显示Already up-to-date,那么恭喜homebrew就安装完毕了

好吧终于安装好了homebrew,那么回到正题!输入

brew install libusb

终于成功了!

==> Pouring libusb-1.0.23.high_sierra.bottle.tar.gz
Warning: This keg was marked linked already, continuing anyway
/usr/local/Cellar/libusb/1.0.23: 29 files, 524.3KB

马不停蹄,输入第二个命令(第二个坑 要进入大佬那个iousbhiddriver-descriptor-override-master文件夹中)

bundle install --without ""

在使用bundle命令之前可能需要安装bundler

gem install bundler

貌似也没问题,那就继续呗

rake scan

报错了!果然没有这么容易搞定。左思右想,对比了一下Gemfile.lock文件,发现事情有点蹊跷,bundle install的输入日志如下:

Using rake 10.4.2
Using bundler 2.0.2
Using diff-lcs 1.2.5
Using plist 3.1.0
Using rspec-support 3.4.1
Using rspec-core 3.4.1
Using rspec-expectations 3.4.0
Using rspec-mocks 3.4.1
Using rspec 3.4.0
Bundle complete! 4 Gemfile dependencies, 9 gems now installed.

与文件中相比,少了ffi和libusb两个gem。
网上各种一顿乱搜,终于发现了问题所在(可怜我找了一天)
在Gemfile文件中有这样一句话:

group :scan do
  gem "libusb"
end

用大佬的bundle install --without ""不能加载,有可能是bundle版本的问题,需要使用

bundle install --with scan

神奇的事情发生了,输出日志中多了两项:

Using ffi 1.9.10
Using libusb 0.5.1
Bundle complete! 4 Gemfile dependencies, 11 gems now installed.

那么我们开始愉快的使用rake scan吧,

Writing details to descriptors/195d-2049-TESORO_Gaming_Keyboard.yaml

在descriptors目录下多了一个yaml文件,说明成功读取了机械键盘设备信息。成功了一半了,加油!
马上进行安装,用终端进入iousbhiddriver-descriptor-override-master文件夹中

gem install bundler(如果安装了,请忽略)
bundle install --without scan

用xcode编译构建
第三个坑 注意:xcode需要用低版本的,我用的Version 8.3 (8E162)可以通过

xcodebuild
sudo cp -r build/Release/IOUSBHIDDriverDescriptorOverride.kext \
/System/Library/Extensions
sudo kextutil \
/System/Library/Extensions/IOUSBHIDDriverDescriptorOverride.kext

激动人心的时刻来临了,敲了下键盘,纳尼!还是不行我去,重新插拔了一下,也不行。我滴个心瞬间凉了一半了,搞了这么久还是不行。苦思冥想,有可能是外接设备插多了的原因,只留了一个键盘一个鼠标,用虚拟键盘重新跑一遍上面的步骤。

终于成功了!!!

其他

真的不容易,其实还有很多其他的坑!这里就不一一赘述了,希望大家都用上自己喜欢的机械键盘✌️✌️

你可能感兴趣的:(解决MacOS机械键盘按键错乱的问题)