mirror of
https://github.com/badgeteam/mch2022-template-app.git
synced 2024-11-22 08:41:00 +00:00
9 lines
205 B
C
9 lines
205 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "esp_wifi.h"
|
|
|
|
void wifi_init();
|
|
bool wifi_connect(const char* aSsid, const char* aPassword, wifi_auth_mode_t aAuthmode, uint8_t aRetryMax);
|