Estou tentando fazer o acionamento do rele pela internet abaixo esta o codigo que estou usando so que quando coloco o ip+/10 que é pra desliga o rele nao desliga ele smp fica ligado e quando estava usando um led funcionava
# include <ESP8266WiFi.h>
const char* ssid = “VIVO-8478”; //VARIÁVEL QUE ARMAZENA O NOME DA REDE SEM FIO EM QUE VAI CONECTAR
const char* password = “0703001315”; //VARIÁVEL QUE ARMAZENA A SENHA DA REDE SEM FIO EM QUE VAI CONECTAR
//DEFINIÇÃO DE IP FIXO PARA O NODEMCU
IPAddress ip(192,168,15,1);
IPAddress gateway(179,184,120,16); //GATEWAY DE CONEXÃO (ROTEADOR)
IPAddress subnet(255,255,255,0); //MASCARA DE REDE
WiFiServer server(80); //CASO OCORRA PROBLEMAS COM A PORTA 80, UTILIZE OUTRA
int val1 = 0; //variáveis que definem o estado dos leds
int val2 = 0; //
void setup() {
Serial.begin(9600);
delay(10);
// prepare GPIO
pinMode(4, OUTPUT);
digitalWrite(4, 0);
// Connect to WiFi network
Serial.println();
Serial.println();
Serial.print("Connecting to ");
Serial.println(ssid);
WiFi.begin(ssid, password);
WiFi.config(ip, gateway, subnet); //PASSA OS PARÂMETROS PARA A FUNÇÃO QUE VAI SETAR O IP FIXO NO NODEMCU
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(".");
}
Serial.println("");
Serial.println("WiFi connected");
// Start the server
server.begin();
Serial.println("Server started");
// Print the IP address
Serial.println(WiFi.localIP());
}
void loop() {
// Check if a client has connected
WiFiClient client = server.available();
if (!client) {
return;
}
// Wait until the client sends some data
Serial.println("new client");
while(!client.available()){
delay(1);
}
// Read the first line of the request
String req = client.readStringUntil('\r');
Serial.println(req);
client.flush();
if (req.indexOf("/10") != -1)
val1 = 0;
if (req.indexOf("/11") != -1)
val1 = 1;
if (req.indexOf("/20") != -1)
val2 = 0;
if (req.indexOf("/21") != -1)
val2 = 1;
digitalWrite(4, val1);
digitalWrite(5, val2);
client.flush();
// Prepare the response
String s = "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\nGPIO is now ";
s += (val1)?"high":"low";
s += "</html>\n";
// Send the response to the client
client.print(s);
delay(1);
Serial.println("Client disonnected");
// The client will actually be disconnected
// when the function returns and 'client' object is detroyed
}
![07%20PM|375x500]