diff options
Diffstat (limited to 'platformio/common/libs/mqtt/homekit/mqtt.h')
-rw-r--r-- | platformio/common/libs/mqtt/homekit/mqtt.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/platformio/common/libs/mqtt/homekit/mqtt.h b/platformio/common/libs/mqtt/homekit/mqtt.h new file mode 100644 index 0000000..2c86b00 --- /dev/null +++ b/platformio/common/libs/mqtt/homekit/mqtt.h @@ -0,0 +1,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 |