forked from etwmc/Personal-HomeKit-HAP
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Configuration.h
48 lines (42 loc) · 1.43 KB
/
Configuration.h
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#pragma once
//
// Configuration.h
// Workbench
//
// Created by Wai Man Chan on 10/27/14.
//
//
#define HomeKitLog 0
#define HomeKitReplyHeaderLog 0
//Device Setting
#define deviceName "Night Light" //Name
#define deviceIdentity "12:00:54:23:51:13" //ID
#define _manufactuerName "ET Chan" //Manufactuer
#define devicePassword "523-12-643" //Password
#define deviceUUID "9FCF7180-6CAA-4174-ABC0-E3FAE58E3ADD" //UUID, for pair verify
#define controllerRecordsAddress "/Users/royarents/Documents/dev/controller" //Where to store the client keys
#define lightwaveLoginFile "/Users/royarents/Documents/dev/lightwaverflogin.txt"
//Number of client
/*
* BEWARE: Never set the number of client to 1
* iOS HomeKit pair setup socket will not release until the pair verify stage start
* So you will never got the pair corrected, as it is incomplete (The error require manually reset HomeKit setting
*/
#define numberOfClient 20
//Number of notifiable value
/*
* Count how many notifiable value exist in your set
* For dynamic add/drop model, please estimate the maximum number (Too few->Buffer overflow)
*/
#define numberOfNotifiableValue 10
//If you compiling this to microcontroller, set it to 1
#define MCU 0
#include <openssl/sha.h>
#include <stdint.h>
#include <unistd.h>
typedef SHA512_CTX SHACTX;
#define SHAInit SHA512_Init
#define SHAUpdate SHA512_Update
#define SHAFinal SHA512_Final
#define SHA_DIGESTSIZE 64
#define SHA_BlockSize 128