February 5, 2018 2 comments Switch off Bluetooth and WiFi To switch off Bluetooth you need to include #include <esp32-hal-bt.c> 1 #include <esp32-hal-bt.c> then you can call btStop(); 1 btStop(); To switch off WiFi you need to include #include <WiFi.h> 1 #include <WiFi.h> then you can call WiFi.mode( WIFI_OFF ); 1 WiFi.mode( WIFI_OFF );
14:56
Hi This is Merve.
I want to use esp32. BLE and Wifi together.
I dont want use library. İs it possible?
You siwitched off Wifi and BLE. But with library.
I want to control and write on datasheet. But have not information. Can you help me?
16:09
Examples how to use WiFi can be found in WiFi Examples
Examples how to use BLE can be found in BLE Examples
You just need to combine them.