mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-21 18:22:32 +00:00
19 lines
266 B
C
19 lines
266 B
C
#pragma once
|
|
|
|
#include "configuration.h"
|
|
#include <Arduino.h>
|
|
#include <functional>
|
|
|
|
#ifdef ARCH_ESP32
|
|
#include <WiFi.h>
|
|
#endif
|
|
|
|
/// @return true if wifi is now in use
|
|
bool initWifi();
|
|
|
|
void deinitWifi();
|
|
|
|
bool isWifiAvailable();
|
|
|
|
uint8_t getWifiDisconnectReason();
|