EIS-BLE-S3/main/captive_portal.h

12 lines
219 B
C

#ifndef CAPTIVE_PORTAL_H
#define CAPTIVE_PORTAL_H
#include "esp_err.h"
#include <stdbool.h>
esp_err_t captive_portal_start(void);
esp_err_t captive_portal_stop(void);
bool captive_portal_is_active(void);
#endif