ESP32 Wi-Fi Signal Strength: Revision history

From Federal Burro of Information
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

9 May 2023

  • curprev 21:0621:06, 9 May 2023David talk contribs 563 bytes +21 No edit summary
  • curprev 21:0621:06, 9 May 2023David talk contribs 542 bytes +542 Created page with " refernce / source: https://randomnerdtutorials.com/esp32-cam-connect-external-antenna/ <pre> #include "WiFi.h" const char* ssid = "REPLACE_WITH_YOUR_SSID"; const char* password = "REPLACE_WITH_YOUR_PASSWORD"; void setup(){ Serial.begin(115200); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } Serial.println(""); Serial.println("WiFi connected."); delay(100); } void loop(){ Serial.print..."