esp32/domestic-climate-monitor/main/mqtt.h

10 lines
219 B
C
Raw Normal View History

2026-02-07 18:22:45 +00:00
#ifndef MQTT_H
#define MQTT_H
#include "mqtt_client.h"
esp_mqtt_client_handle_t mqtt_connect();
2026-02-09 18:55:17 +00:00
void mqtt_publish(esp_mqtt_client_handle_t client, char *topic,
const char *payload);
2026-02-07 18:22:45 +00:00
#endif // MQTT_H