Browse Source

Make a test with fixed ip

feature/basic_test
gabriel becker 2 years ago
parent
commit
d8cf5d8534
  1. 52
      src/main.cpp

52
src/main.cpp

@ -1,4 +1,3 @@
#include <ESP8266WiFi.h> #include <ESP8266WiFi.h>
#include <WiFiClient.h> #include <WiFiClient.h>
#include <ESP8266WebServer.h> #include <ESP8266WebServer.h>
@ -14,47 +13,60 @@
const char *APssid = APSSID; const char *APssid = APSSID;
const char *APpassword = APPSK; const char *APpassword = APPSK;
const char *ssid = "yourssid"; const char *ssid = "Apto202";
const char *password = "yourspassword"; const char *password = "gatocafe";
ESP8266WebServer web_server(80); ESP8266WebServer web_server(80);
WiFiClient wifiClient; WiFiClient wifiClient;
String HOST_ADDRESS = "192.168.0.47";
void make_request(){ String make_toggle_request(){
HTTPClient http; //Declare object of class HTTPClient HTTPClient http;
String ADCData, station, getData, request;
String ADCData, station, getData, link;
link = "http://hostname/?m=1&o=1"; request = "http://" + HOST_ADDRESS + "/cm?cmnd=Power24%20Toggle";
Serial.println("Sent request to:" + link); Serial.println("Sent request to:" + request);
http.begin(wifiClient, link); //Specify request destination http.begin(wifiClient, request);
int httpCode = http.GET(); //Send the request auto httpCode = http.GET();
String payload = http.getString(); //Get the response payload String response = http.getString();
http.end();
http.end(); //Close connection return response;
} }
void handleRoot() { void handleRoot() {
make_request(); make_toggle_request();
web_server.send(200, "text/html", "<h1>Soy yo</h1>"); web_server.send(200, "text/html", "<h1>Deu bom!</h1>");
}
void handleSetHost() {
String host = web_server.arg("host");
Serial.println("Setting host to: " + host);
HOST_ADDRESS = host;
} }
void setup() { void setup() {
delay(1000); delay(1000);
Serial.begin(9600); Serial.begin(9600);
Serial.println(); Serial.println("Init");
Serial.print("Configuring access point..."); Serial.print("Configuring access point...");
/* You can remove the password parameter if you want the AP to be open. */ /* You can remove the password parameter if you want the AP to be open. */
WiFi.mode(WIFI_AP_STA); // WiFi.mode(WIFI_AP_STA);
WiFi.softAP(APssid, APpassword); // WiFi.softAP(APssid, APpassword);
WiFi.begin(ssid, password); WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
Serial.print('.');
delay(1000);
}
// Serial.println(WiFi.localIP());
// Serial.println(WiFi.softAPIP());
Serial.print("AP IP address: ");
Serial.println(WiFi.localIP()); Serial.println(WiFi.localIP());
Serial.println(WiFi.softAPIP());
Serial.println("AP IP address: ");
web_server.on("/", handleRoot); web_server.on("/", handleRoot);
web_server.on("/sethost", handleSetHost);
web_server.begin(); web_server.begin();
Serial.println("HTTP server started"); Serial.println("HTTP server started");
} }

Loading…
Cancel
Save