ChaosDMX
Open-Source DMX-Interface
Loading...
Searching...
No Matches
wifi.h
Go to the documentation of this file.
1#pragma once
2
3#include "esp_err.h"
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
21esp_err_t wifi_start_ap(const char *ssid, const char *password, uint8_t channel,
22 uint8_t max_connections);
23
29void wifi_stop_ap(void);
30
31#ifdef __cplusplus
32}
33#endif
void wifi_stop_ap(void)
Stop WiFi Access Point (AP) mode.
Definition wifi.c:96
esp_err_t wifi_start_ap(const char *ssid, const char *password, uint8_t channel, uint8_t max_connections)
Start WiFi Access Point (AP) mode.
Definition wifi.c:29