Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. #include <ESP8266WiFi.h>
  2.  
  3. WiFiClient client;
  4. WiFiServer server(80); // Listening at port 80
  5.  
  6. const char* ssid = "wifi name";
  7. const char* password = "wifi password";
  8.  
  9. String data ="";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement