8 lines
188 B
C
8 lines
188 B
C
#ifndef MQTT_H
|
|
#define MQTT_H
|
|
|
|
#include "mqtt_client.h"
|
|
esp_mqtt_client_handle_t mqtt_connect();
|
|
void mqtt_publish(esp_mqtt_client_handle_t client, const char *payload);
|
|
|
|
#endif // MQTT_H
|