#include <WiFi.h>
/*
Codigo adaptado de: https://github.com/tamberg/fhnw-iot/blob/master/03/Arduino/ESP8266_WiFiClient/ESP8266_WiFiClient.ino
*/
//////////////////////
// WiFi Definitions //
//////////////////////
// WiFi network
const char* ssid = "Wokwi-GUEST";
const char* password = "";
void setup() {
setupWiFi();
serverRequest();
}
void loop() {
}
void setupWiFi() {
// Connecting to a WiFi network
Serial.begin(115200);
Serial.println();
Serial.println();
Serial.println("Connecting to WiFi network: " + String(ssid));
// WiFi.begin(ssid, pwd);
WiFi.begin(ssid, password, 6);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
Serial.println("IP address: ");
Serial.println(WiFi.localIP());
}
void serverRequest() {
const char *host = "tmb.gr";
const char *path = "/hello.json";
const int port = 80;
// connect to remote host
WiFiClient client;
if (client.connect(host, port)) {
/*
Command in PC: curl -v tmb.gr/hello.json
*/
// send HTTP request
client.print("GET ");
client.print(path);
client.print(" HTTP/1.1\r\n");
client.print("Host: ");
client.print(host);
client.print("\r\n");
client.print("Connection: close\r\n\r\n");
// read HTTP response
while (client.connected() || client.available()) {
int ch = client.read();
while (ch >= 0) {
Serial.print((char) ch);
ch = client.read();
}
}
}
}
esp:0
esp:2
esp:4
esp:5
esp:12
esp:13
esp:14
esp:15
esp:16
esp:17
esp:18
esp:19
esp:21
esp:22
esp:23
esp:25
esp:26
esp:27
esp:32
esp:33
esp:34
esp:35
esp:3V3
esp:EN
esp:VP
esp:VN
esp:GND.1
esp:D2
esp:D3
esp:CMD
esp:5V
esp:GND.2
esp:TX
esp:RX
esp:GND.3
esp:D1
esp:D0
esp:CLK