19 lines
450 B
C++
19 lines
450 B
C++
#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
|