项目作者: SimonGolms

项目描述 :
Generate a HomeKit pairing QR code for your Homekit accessory from your command line
高级语言: TypeScript
项目地址: git://github.com/SimonGolms/homekit-qrcode.git
创建时间: 2020-12-28T13:31:14Z
项目社区:https://github.com/SimonGolms/homekit-qrcode

开源协议:MIT License

下载


ℹ️ This package is deprecated and no longer maintained. Please use the successor: homekit-code


HomeKit QR Code

Generate a pairing HomeKit QR code label for your HomeKit accessory

npm version
Documentation
Maintenance
License: MIT
Conventional Commits
semantic-release

Usage

  1. npx homekit-qrcode --category=switch --pairingCode=84131633 --setupId=3QYT

CLI

  1. Usage: homekit-qrcode [options]
  2. Options:
  3. -h, --help [boolean]
  4. --version Show version number [boolean]
  5. -c, --category category of the Homeit accessory [string] [required] [choices: "other", "bridge", "fan", "garage", "lightbulb", "doorLock", "outlet", "switch", "thermostat", "sensor", "securitySystem", "door", "window", "windowCovering", "programmableSwitch", "rangeExtender", "ipCamera", "videoDoorBell", "airPurifier", "heater", "airConditioner", "humidifier", "dehumidifier", "appleTv", "speaker", "airport", "sprinkler", "faucet", "showerHead", "television", "targetController"]
  6. -n, --name name of the generated file [string] [default: "homekit-qrcode"]
  7. -o, --output format of the generated file [required] [choices: "svg", "png", "jpeg"] [default: "svg"]
  8. -p, --pairingCode 8 digits pairing code [string] [required]
  9. -s, --setupId [string] [required]
  10. Examples:
  11. npx homekit-qrcode --category=switch --pairingCode=84131633 --setupId=3QYT Generate a QR code for a HomeKit switch
  12. npx homekit-qrcode --category=switch --pairingCode=84131633 --setupId=3QYT --name=switch --output=png Generate a QR code for a HomeKit switch as switch.png

Output

qrcode


Local Development

Install Dependencies

  1. npm install

Start Development Server

  1. npm run start -- --category=switch --pairingCode=84131633 --setupId=3QYT

Build

To build homekit-qrcode for production, run:

  1. npm run build

Afterwards the executable code is available under ./lib/.

  1. cd lib
  2. node index.js --category=switch --pairingCode=84131633 --setupId=3QYT

Run Tests

  1. npm test

Repair

This command may be useful when obscure errors or issues are encountered. It removes and recreates dependencies of your project.

  1. npm run repair

Release

Fully automated version management and package publishing via semantic-release. It bumps the version according to conventional commits, publishes the package to npm and release a new version to GitHub.

Make sure that the secrets GITHUB_TOKEN and NPM_TOKEN are available in GitHub repository.

  1. npm run release:ci

Manual Release

Make sure that the environment variables GITHUB_TOKEN and NPM_TOKEN are set or declared in .env and a productive build was previously created via npm run build.

  1. npm run release

You can also test the release manually by running the following command:

  1. npm run release:dry-run

FAQ

Will my HomeKit accessory be able to pair with the generated QR code?

The QR code is not the same as the pairing code, instead it consists of several parameters such as the category, a specific version and other parameters.
This generated setup payload is the actual content of the QR code and can be generated with the HomeKit Accessory Simulator (HAS) as well.

qrcode

How do I find out the setup id of my HomeKit Accessory?

Scan the QR code with a QR scanner of your choice. You should get a text starting with X-HM://.... . The next 9 characters are the combination of the different parameters like the pairing code and the category. The remaining characters are the setup id.

  1. X-HM://0081YCYEP3QYT ◄── Scanned Setup Payload
  2. X-HM:// 008YCYEP 3QYT
  3. └─── Setup ID
  4. └── Combination of Parameters (first 9 characters)
  5. └─ Starting Content

Author

Simon Golms

Show your support

Give a ⭐️ if this project helped you!

License

Copyright © 2021 Simon Golms.

This project is MIT licensed.

Resources