Created
December 21, 2023 22:33
-
-
Save jhowbhz/43b65c65a0f4741a105e2793cab4895e to your computer and use it in GitHub Desktop.
Wifi + Bluetooth ESP32-CAM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This sketch demonstrates how to scan WiFi networks. | |
* The API is almost the same as with the WiFi Shield library, | |
* the most obvious difference being the different file you need to include: | |
*/ | |
#include "WiFi.h" | |
#include "BluetoothSerial.h" | |
#if !defined(CONFIG_BT_ENABLED) || !defined(CONFIG_BLUEDROID_ENABLED) | |
#error Bluetooth is not enabled! Please run `make menuconfig` to and enable it | |
#endif | |
BluetoothSerial SerialBT; | |
void setup() | |
{ | |
Serial.begin(115200); | |
// Set WiFi to station mode and disconnect from an AP if it was previously connected | |
WiFi.mode(WIFI_STA); | |
WiFi.disconnect(); | |
delay(100); | |
Serial.println("Setup done"); | |
SerialBT.begin("ESP32test"); //Bluetooth device name | |
Serial.println("The device started, now you can pair it with bluetooth!"); | |
} | |
void loop() | |
{ | |
Serial.println("scan start"); | |
if (Serial.available()) { | |
SerialBT.write(Serial.read()); | |
} | |
if (SerialBT.available()) { | |
Serial.write(SerialBT.read()); | |
} | |
delay(20); | |
// WiFi.scanNetworks will return the number of networks found | |
int n = WiFi.scanNetworks(); | |
Serial.println("scan done"); | |
if (n == 0) { | |
Serial.println("no networks found"); | |
} else { | |
Serial.print(n); | |
Serial.println(" networks found"); | |
for (int i = 0; i < n; ++i) { | |
// Print SSID and RSSI for each network found | |
Serial.print(i + 1); | |
Serial.print(": "); | |
Serial.print(WiFi.SSID(i)); | |
Serial.print(" ("); | |
Serial.print(WiFi.RSSI(i)); | |
Serial.print(")"); | |
Serial.println((WiFi.encryptionType(i) == WIFI_AUTH_OPEN)?" ":"*"); | |
delay(10); | |
} | |
} | |
Serial.println(""); | |
// Wait a bit before scanning again | |
delay(5000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment