All public logs

From Federal Burro of Information
Jump to navigationJump to search

Combined display of all available logs of Federal Burro of Information. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 21:06, 9 May 2023 David talk contribs created page ESP32 Wi-Fi Signal Strength (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...")