blob: 2b74fc2fb4af8ce719e7dabc3ab5ba6aae33c19c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
menu "HomeKit Intercom Configuration"
config HOMEKIT_USE_HARDCODED_SETUP_CODE
bool "Use hard-coded setup code"
default y
help
HomeKit does not recommend having the setup code programmed in the accessory as is.
Instead, it expects setup info (salt-verifier pair) generated for the given setup code.
Use this option only for testing purposes. For production, the setup info should be
used.
config HOMEKIT_SETUP_CODE
string "HomeKit Setup Code"
default "111-22-333"
depends on HOMEKIT_USE_HARDCODED_SETUP_CODE
help
Setup code to be used for HomeKit pairing, if hard-coded setup code is enabled.
config HOMEKIT_SETUP_ID
string "HomeKit Setup Id"
default "ES32"
depends on HOMEKIT_USE_HARDCODED_SETUP_CODE
help
Setup id to be used for HomeKit pairing, if hard-coded setup code is enabled.
config HOMEKIT_INTERCOM_LOCK_TIMEOUT
int "HomeKit Intercom Millisecond Timeout"
default 10000
help
Milliseconds before locking intercom
endmenu
|