mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2026-03-09 05:20:21 +00:00
15 lines
261 B
C
15 lines
261 B
C
#pragma once
|
|
|
|
#include "esp_err.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
esp_err_t wifi_start_ap(const char *ssid, const char *password, uint8_t channel,
|
|
uint8_t max_connections);
|
|
void wifi_stop_ap(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|