ESP8266 NodeMCU Adresse IP statique/fixe (Arduino IDE)

ESP8266 NodeMCU Adresse IP statique/fixe (Arduino IDE)

Ce tutoriel montre comment définir une adresse IP statique/fixe pour votre carte ESP8266 NodeMCU. Si vous utilisez un serveur Web ou un client Wi-Fi avec votre ESP8266 et que chaque fois que vous redémarrez votre carte, elle a une nouvelle adresse IP, vous pouvez suivre ce tutoriel pour attribuer une adresse IP statique/fixe.

Définir l'adresse IP statique ou fixe ESP8266 NodeMCU à l'aide de l'IDE Arduino

Croquis d’adresse IP statique/fixe

Pour vous montrer comment réparer votre adresse IP ESP8266, nous utiliserons le code du serveur Web ESP8266 comme exemple. À la fin de notre explication, vous devriez être en mesure de corriger votre adresse IP quel que soit le serveur Web ou le projet Wi-Fi que vous construisez.

Copiez le code ci-dessous dans votre IDE Arduino, mais ne le téléchargez pas encore. Vous devez apporter quelques modifications pour que cela fonctionne pour vous.

Noter: si vous téléchargez le prochain croquis sur votre carte ESP8266, il devrait automatiquement attribuer l’adresse IP fixe 192.168.1.184.

/*********
  Rui Santos
  Complete project details at https://Raspberryme.com/esp8266-nodemcu-static-fixed-ip-address-arduino/
*********/

// Load Wi-Fi library
#include <ESP8266WiFi.h>

// Replace with your network credentials
const char* ssid     = "REPLACE_WITH_YOUR_SSID";
const char* password = "REPLACE_WITH_YOUR_PASSWORD";

// Set web server port number to 80
WiFiServer server(80);

// Variable to store the HTTP request
String header;

// Auxiliar variables to store the current output state
String output5State = "off";
String output4State = "off";

// Assign output variables to GPIO pins
const int output5 = 5;
const int output4 = 4;

// Current time
unsigned long currentTime = millis();
// Previous time
unsigned long previousTime = 0; 
// Define timeout time in milliseconds (example: 2000ms = 2s)
const long timeoutTime = 2000;

// Set your Static IP address
IPAddress local_IP(192, 168, 1, 184);
// Set your Gateway IP address
IPAddress gateway(192, 168, 1, 1);

IPAddress subnet(255, 255, 0, 0);
IPAddress primaryDNS(8, 8, 8, 8);   //optional
IPAddress secondaryDNS(8, 8, 4, 4); //optional

void setup() {
  Serial.begin(115200);
  // Initialize the output variables as outputs
  pinMode(output5, OUTPUT);
  pinMode(output4, OUTPUT);
  // Set outputs to LOW
  digitalWrite(output5, LOW);
  digitalWrite(output4, LOW);
  
  // Configures static IP address
  if (!WiFi.config(local_IP, gateway, subnet, primaryDNS, secondaryDNS)) {
    Serial.println("STA Failed to configure");
  }
  
  // Connect to Wi-Fi network with SSID and password
  Serial.print("Connecting to ");
  Serial.println(ssid);
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  // Print local IP address and start web server
  Serial.println("");
  Serial.println("WiFi connected.");
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
  server.begin();
}

void loop(){
  WiFiClient client = server.available();   // Listen for incoming clients

  if (client) {                             // If a new client connects,
    Serial.println("New Client.");          // print a message out in the serial port
    String currentLine = "";                // make a String to hold incoming data from the client
    currentTime = millis();
    previousTime = currentTime;
    while (client.connected() && currentTime - previousTime <= timeoutTime) { // loop while the client's connected
      currentTime = millis();         
      if (client.available()) {             // if there's bytes to read from the client,
        char c = client.read();             // read a byte, then
        Serial.write(c);                    // print it out the serial monitor
        header += c;
        if (c == 'n') {                    // if the byte is a newline character
          // if the current line is blank, you got two newline characters in a row.
          // that's the end of the client HTTP request, so send a response:
          if (currentLine.length() == 0) {
            // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK)
            // and a content-type so the client knows what's coming, then a blank line:
            client.println("HTTP/1.1 200 OK");
            client.println("Content-type:text/html");
            client.println("Connection: close");
            client.println();
            
            // turns the GPIOs on and off
            if (header.indexOf("GET /5/on") >= 0) {
              Serial.println("GPIO 5 on");
              output5State = "on";
              digitalWrite(output5, HIGH);
            } else if (header.indexOf("GET /5/off") >= 0) {
              Serial.println("GPIO 5 off");
              output5State = "off";
              digitalWrite(output5, LOW);
            } else if (header.indexOf("GET /4/on") >= 0) {
              Serial.println("GPIO 4 on");
              output4State = "on";
              digitalWrite(output4, HIGH);
            } else if (header.indexOf("GET /4/off") >= 0) {
              Serial.println("GPIO 4 off");
              output4State = "off";
              digitalWrite(output4, LOW);
            }
            
            // Display the HTML web page
            client.println("<!DOCTYPE html><html>");
            client.println("<head><meta name="viewport" content="width=device-width, initial-scale=1">");
            client.println("<link rel="icon" href="data:,">");
            // CSS to style the on/off buttons 
            // Feel free to change the background-color and font-size attributes to fit your preferences
            client.println("<style>html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}");
            client.println(".button { background-color: #195B6A; border: none; color: white; padding: 16px 40px;");
            client.println("text-decoration: none; font-size: 30px; margin: 2px; cursor: pointer;}");
            client.println(".button2 {background-color: #77878A;}</style></head>");
            
            // Web Page Heading
            client.println("<body><h1>ESP8266 Web Server</h1>");
            
            // Display current state, and ON/OFF buttons for GPIO 5  
            client.println("<p>GPIO 5 - State " + output5State + "</p>");
            // If the output5State is off, it displays the ON button       
            if (output5State=="off") {
              client.println("<p><a href="/5/on"><button class="button">ON</button></a></p>");
            } else {
              client.println("<p><a href="/5/off"><button class="button button2">OFF</button></a></p>");
            } 
               
            // Display current state, and ON/OFF buttons for GPIO 4  
            client.println("<p>GPIO 4 - State " + output4State + "</p>");
            // If the output4State is off, it displays the ON button       
            if (output4State=="off") {
              client.println("<p><a href="/4/on"><button class="button">ON</button></a></p>");
            } else {
              client.println("<p><a href="/4/off"><button class="button button2">OFF</button></a></p>");
            }
            client.println("</body></html>");
            
            // The HTTP response ends with another blank line
            client.println();
            // Break out of the while loop
            break;
          } else { // if you got a newline, then clear currentLine
            currentLine = "";
          }
        } else if (c != 'r') {  // if you got anything else but a carriage return character,
          currentLine += c;      // add it to the end of the currentLine
        }
      }
    }
    // Clear the header variable
    header = "";
    // Close the connection
    client.stop();
    Serial.println("Client disconnected.");
    Serial.println("");
  }
}

Afficher le code brut

Définition de vos informations d’identification réseau

Vous devez modifier les lignes suivantes avec vos identifiants réseau : SSID et mot de passe.

// Replace with your network credentials
const char* ssid = "REPLACE_WITH_YOUR_SSID";
const char* password = "REPLACE_WITH_YOUR_PASSWORD";

Définition de l’adresse IP statique ESP8266

Puis, à l’extérieur du mettre en place() et boucler() fonctions, vous définissez les variables suivantes avec votre propre adresse IP statique et l’adresse IP de la passerelle correspondante.

Par défaut, le code suivant attribue l’adresse IP 192.168.1.184 qui fonctionne dans la passerelle 192.168.1.1.

// Set your Static IP address
IPAddress local_IP(192, 168, 1, 184);
// Set your Gateway IP address
IPAddress gateway(192, 168, 1, 1);

IPAddress subnet(255, 255, 0, 0);
IPAddress primaryDNS(8, 8, 8, 8); // optional
IPAddress secondaryDNS(8, 8, 4, 4); // optional

Important: vous devez utiliser une adresse IP disponible dans votre réseau local et la passerelle correspondante.

mettre en place()

Dans le mettre en place() vous devez appeler le WiFi.config() méthode pour attribuer les configurations à votre ESP8266.

// Configures static IP address
if (!WiFi.config(local_IP, gateway, subnet, primaryDNS, secondaryDNS)) {
  Serial.println("STA Failed to configure");
}

Noter: la DNS primaire et DNS secondaire les paramètres sont facultatifs et vous pouvez les supprimer.

Essai

Après avoir téléchargé le code sur votre carte, ouvrez le moniteur série Arduino IDE au débit en bauds 115200, redémarrez votre carte ESP8266 et l’adresse IP définie précédemment doit être attribuée à votre carte.

ESP8266 Moniteur série à adresse IP statique fixe

Comme vous pouvez le voir, il imprime l’adresse IP 192.168.1.184.

Vous pouvez prendre cet exemple et l’ajouter à tous vos croquis Wi-Fi pour attribuer une adresse IP fixe à votre ESP8266.

Attribution d’une adresse IP avec une adresse MAC

Si vous avez essayé d’attribuer une adresse IP fixe à l’ESP8266 en utilisant l’exemple précédent et que cela ne fonctionne pas, nous vous recommandons d’attribuer une adresse IP directement dans les paramètres de votre routeur via l’adresse MAC ESP8266.

Téléchargez le code suivant sur la carte ESP8266 :

// Complete Instructions to Get and Change ESP MAC Address: https://Raspberryme.com/get-change-esp32-esp8266-mac-address-arduino/

#ifdef ESP32
  #include <WiFi.h>
#else
  #include <ESP8266WiFi.h>
#endif

void setup(){
  Serial.begin(115200);
  Serial.println();
  Serial.print("ESP Board MAC Address:  ");
  Serial.println(WiFi.macAddress());
}
 
void loop(){

}

Afficher le code brut

Dans le mettre en place(), il imprime l’adresse MAC ESP8266 dans le moniteur série :

// Print ESP MAC Address
Serial.println("MAC address: ");
Serial.println(WiFi.macAddress());
1642556891 104 ESP8266 NodeMCU Adresse IP statiquefixe Arduino IDE

Dans notre cas, l’adresse MAC ESP8266 est B4:E6:2D:97:EE:F1. Copiez l’adresse MAC, car vous en aurez besoin dans un instant.

Paramètres du routeur

Si vous vous connectez à la page d’administration de votre routeur, il devrait y avoir une page/un menu où vous pouvez attribuer une adresse IP à un périphérique réseau. Chaque routeur a des menus et des configurations différents. Nous ne pouvons donc pas fournir d’instructions sur la manière de procéder pour tous les routeurs disponibles.

Nous vous recommandons de googler « attribuer l’adresse IP à l’adresse MAC” suivi du nom de votre routeur. Vous devriez trouver des instructions qui montrent comment attribuer l’adresse IP à une adresse MAC pour votre routeur spécifique.

En résumé, si vous allez dans le menu des configurations de votre routeur, vous devriez pouvoir attribuer votre adresse IP souhaitée à votre adresse MAC ESP8266 (par exemple B4:E6:2D:97:EE:F1).

Conclusion

Après avoir suivi ce tutoriel, vous devriez pouvoir attribuer une adresse IP fixe/statique à votre ESP8266. Si vous avez un ESP32, vous pouvez lire ce guide Set ESP32 Static/Fixed IP Address.

Nous espérons que vous avez trouvé ce tutoriel utile. Si vous aimez ESP8266, vous aimerez aussi :

Merci d’avoir lu.