disable bluetooth while using wifi (esp32 drops networks otherwise)

This commit is contained in:
Kevin Hester
2021-08-17 16:58:21 -07:00
parent 0d758347af
commit 189889489b
6 changed files with 26 additions and 53 deletions

View File

@@ -9,7 +9,9 @@
#include <WiFi.h>
#endif
void initWifi(bool forceSoftAP);
/// @return true if wifi is now in use
bool initWifi(bool forceSoftAP);
void deinitWifi();
bool isWifiAvailable();