Created
May 25, 2023 01:33
-
-
Save almcarvalho/46f523890045f86a77ab7e760c861d6d to your computer and use it in GitHub Desktop.
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
#include <ESP8266WiFi.h> | |
#include <ESP8266HTTPClient.h> | |
const char* ssid = "yourNetworkName"; | |
const char* password = "yourNetworkPassword"; | |
void setup () { | |
Serial.begin(115200); | |
WiFi.begin(ssid, password); | |
while (WiFi.status() != WL_CONNECTED) { | |
delay(1000); | |
Serial.print("Connecting.."); | |
} | |
} | |
void loop() { | |
if (WiFi.status() == WL_CONNECTED) { //Check WiFi connection status | |
HTTPClient http; //Declare an object of class HTTPClient | |
http.begin("http://jsonplaceholder.typicode.com/users/1"); //Specify request destination | |
int httpCode = http.GET(); //Send the request | |
if (httpCode > 0) { //Check the returning code | |
String payload = http.getString(); //Get the request response payload | |
Serial.println(payload); //Print the response payload | |
} | |
http.end(); //Close connection | |
} | |
delay(30000); //Send a request every 30 seconds | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment