mirror of
https://github.com/badgeteam/mch2022-template-app.git
synced 2024-12-23 07:36:46 +00:00
9 lines
184 B
C
9 lines
184 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "esp_wifi.h"
|
||
|
|
||
|
bool wifi_init(const char* aSsid, const char* aPassword, wifi_auth_mode_t aAuthmode, uint8_t aRetryMax);
|