Advertisement
A_GUES

C++ WiFi

Jul 6th, 2023 (edited)
937
2
Never
10
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.62 KB | None | 2 0
  1. #include <ESP8266WiFi.h>
  2.  
  3. const char* ssid = "your_network_ssid";  // replace with your network's SSID
  4. const char* password = "your_network_password";  // replace with your network's password
  5.  
  6. void setup() {
  7.   Serial.begin(115200);
  8.   delay(10);
  9.  
  10.   Serial.println();
  11.   Serial.println();
  12.   Serial.print("Connecting to ");
  13.   Serial.println(ssid);
  14.  
  15.   WiFi.begin(ssid, password);
  16.  
  17.   while (WiFi.status() != WL_CONNECTED) {
  18.     delay(500);
  19.     Serial.print(".");
  20.   }
  21.  
  22.   Serial.println("");
  23.   Serial.println("WiFi connected");
  24.   Serial.println("IP address: ");
  25.   Serial.println(WiFi.localIP());
  26. }
  27.  
  28. void loop() {
  29.  
  30. }
Advertisement
Comments
  • A_GUES
    1 year
    Comment was deleted
  • A_GUES
    1 year
    Comment was deleted
  • A_GUES
    1 year
    # text 0.06 KB | 0 0
    1. How to f**k skill Python
    2. LInk: https://youtu.be/fvlkgdngGlQ
  • A_GUES
    1 year
    # text 0.09 KB | 0 0
    1. C, C++, in 100 seconds
    2. Link: https://youtu.be/U3aXWizDbQ4
    3. Link: https://youtu.be/MNeX4EGtR5Y
  • 404Coder
    1 year
    Comment was deleted
  • 404Coder
    1 year
    # text 0.32 KB | 1 0
    1. hey A_GUES i made you a custom script and go to pastebin.com/85P3rfJM now coz its private to see the script the password is (a1ef) and now clone the script and you can claim my script yours ("its just a kind gift i gave you just clone my script after entering the password: a1ef.. if you play roblox my username is QWIUICK
  • A_GUES
    1 year
    # text 0.00 KB | 0 0
    1. Ok
  • A_GUES
    1 year
    # text 0.01 KB | 0 0
    1. Job openai me
  • A_GUES
    1 year
    Comment was deleted
  • A_GUES
    1 year
    Comment was deleted
Add Comment
Please, Sign In to add comment
Advertisement