2022-04-18 00:10:44 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "esp_wifi.h"
|
|
|
|
|
2022-05-13 20:56:20 +00:00
|
|
|
void wifi_init();
|
|
|
|
bool wifi_connect(const char* aSsid, const char* aPassword, wifi_auth_mode_t aAuthmode, uint8_t aRetryMax);
|
2022-05-24 12:35:05 +00:00
|
|
|
bool wifi_connect_ent(const char* aSsid, const char *aIdent, const char *aAnonIdent, const char* aPassword, uint8_t aRetryMax);
|
|
|
|
void wifi_scan();
|