blob: 2c86b00688e71e426b53918c0f4fb05508f428e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef COMMON_HOMEKIT_MQTT_H
#define COMMON_HOMEKIT_MQTT_H
#include <stdint.h>
namespace homekit::mqtt {
extern const uint8_t MQTT_CA_FINGERPRINT[];
extern const char MQTT_SERVER[];
extern const uint16_t MQTT_PORT;
extern const char MQTT_USERNAME[];
extern const char MQTT_PASSWORD[];
extern const char MQTT_CLIENT_ID[];
extern const char MQTT_SECRET[CONFIG_NODE_SECRET_SIZE+1];
}
#endif //COMMON_HOMEKIT_MQTT_H
|