it:iot:esp8266:vyroba-wifi-teplomeru

Rozdíly

Zde můžete vidět rozdíly mezi vybranou verzí a aktuální verzí dané stránky.

Odkaz na výstup diff

Obě strany předchozí revize Předchozí verze
it:iot:esp8266:vyroba-wifi-teplomeru [2024/01/02 17:09] – [Výroba Wi-Fi teploměru s ESP8266] Petr Nosekit:iot:esp8266:vyroba-wifi-teplomeru [2024/01/02 17:17] (aktuální) Petr Nosek
Řádek 631: Řádek 631:
  
  
 +
 +===== Kód pro teploměr s ESP8266 napsaný v C++  =====
 +
 +I když jsem začal stránku s tím, že budu používat MicroPython, přešel jsem kvůli stabilitě a dalším důvodům k C++. Co se týče certifikátů, tak řešení s certifikáty je popsáno na stránce [[it:iot:self-signed-certificate|]]. A tady už je kód v C++ pro ESP8266 kmpilovaný v Arduino IDE:
 +
 +<code cpp>
 +#include <ESP8266WiFi.h>
 +#include <WiFiClientSecure.h>
 +#include <PubSubClient.h>
 +#include <Wire.h>
 +#include <Adafruit_Sensor.h>
 +#include <Adafruit_BME280.h>
 +#include <ArduinoJson.h>
 +
 +#include "client_crt.h"  // client certificate
 +#include "client_key.h"  // client key
 +
 +
 +
 +const char* WiFiName = "IOT-WiFi";
 +const char* WiFiPassword = "supersecretpassword";
 +
 +
 +// MQTT connection
 +const char* clientName = "thermometer";
 +const char* mqttBroker = "192.168.0.120";
 +const int mqttPort = 8883;
 +const char* mqttUser = "user";
 +const char* mqttPassword = "supersecretpassword";
 +const char* mqttTopic = "/sensor/bme280";
 +
 +Adafruit_BME280 bme;
 +
 +
 +
 +WiFiClientSecure espClient;
 +PubSubClient mqttClient(espClient);
 +
 +
 +
 +
 +void setupWiFi() {
 +  
 +  
 +  WiFi.mode(WIFI_STA);
 +  WiFi.begin(WiFiName, WiFiPassword);
 +  
 +  // connect to WiFi
 +  Serial.print("Connecting to WiFi...");
 +  
 +  // wait for connecting to the server
 +  // during this waiting it will write dot to serial link
 +  while (WiFi.status() != WL_CONNECTED) {
 +    delay(500);
 +    Serial.print(".");
 +  }
 +
 +  // write new line, Wi-Fi network and IP address of connection
 +  Serial.println("");
 +  Serial.print("Connected to WiFi ");
 +  Serial.println(WiFiName);
 +  Serial.print("IP address: ");
 +  Serial.println(WiFi.localIP());
 +
 +  WiFi.setAutoReconnect(true);
 +  WiFi.persistent(true);
 +
 +}
 +
 +
 +void reconnectMQTT() {
 +
 +  int retryCount = 0;
 +
 +  while (!mqttClient.connected()) {
 +
 +    Serial.println("Attempting to connect to MQTT server...");
 +
 +    // SSL/TLS certificate and key settings
 +    // The BearSSL::X509List and BearSSL::PrivateKey objects must be in scope (alive)
 +    // for the duration of their usage by espClient. If these objects are defined
 +    // within a separate function and used here, they will be destroyed when that 
 +    // function exits, leading to undefined behavior and potential device resets.
 +    // A solution to this is to declare them as global variables if they need to 
 +    // be used across multiple functions.
 +    BearSSL::X509List cert(cert_der, cert_der_len);
 +    BearSSL::PrivateKey key(key_der, key_der_len);
 +
 +
 +
 +    espClient.setInsecure();
 +    espClient.setClientRSACert(&cert, &key);  // Setting the client's cert and key
 +
 +    mqttClient.setServer(mqttBroker, mqttPort);
 +
 +
 +    if (mqttClient.connect(clientName, mqttUser, mqttPassword)) {
 +      
 +      Serial.println("Connected to MQTT");
 +      
 +    } else {
 +      Serial.print("Failed, rc=");
 +      Serial.print(mqttClient.state());
 +      Serial.println(" trying again in 5 seconds");
 +      delay(5000); // 5-second delay between attempts
 +
 +      retryCount++;
 +
 +      if (retryCount > 5) {  // Restart the ESP if it fails to connect 5 times
 +        //ESP.restart();
 +      }
 +
 +    }
 +  }
 +
 +}
 +
 +
 +
 +void setup() {
 +
 + 
 +  // put your setup code here, to run once:
 +
 +  
 +  // start communication on serial line
 +  Serial.begin(9600);
 +
 +
 +  // Inicializace BME280
 +  if (!bme.begin(0x76)) {  // BME280 I2C  sensor address
 +    Serial.println("Nepodařilo se najít senzor BME280!");
 +    while (1);
 +  }
 +  
 +  setupWiFi();
 +  
 +  reconnectMQTT();
 +
 +}
 +
 +
 +void loop() {
 +  // put your main code here, to run repeatedly:
 +
 +  if (!mqttClient.connected()) {
 +    reconnectMQTT();
 +  }
 +  mqttClient.loop();
 +
 +
 +  // send message each 5 sec
 +  static unsigned long lastMsg = 0;
 +  unsigned long now = millis();
 +
 +  if (now - lastMsg > 5000) {
 +    lastMsg = now;
 +
 +    // read data from BME280
 +    float humidity = bme.readHumidity();
 +    float temperature = bme.readTemperature();
 +    float pressure = bme.readPressure() / 100.0F;
 +
 +
 +    // Vytvoření JSON objektu
 +    StaticJsonDocument<200> doc;
 +    
 +    doc["humidity"] = humidity;
 +    doc["temperature"] = temperature;
 +    doc["pressure"] = pressure;
 +
 +    // Serializace JSON objektu do řetězce
 +    char jsonBuffer[200];
 +    serializeJson(doc, jsonBuffer);
 +
 +    // Odeslání JSON řetězce na MQTT server
 +    mqttClient.publish(mqttTopic, jsonBuffer);
 +        
 +  }
 + 
 +
 +}
 +
 +</code>
 +
 +<adm warning>Ještě jsem se poučil s MQTT s pojmenováním zařízení. Protože jsem měl už zařízení se stejným názvem thermometer na síti, tak se mi zařízení neustále odpojovalo od MQTT. Přejmenování zařízení problém vyřešilo.</adm>
  • it/iot/esp8266/vyroba-wifi-teplomeru.1704215384.txt.gz
  • Poslední úprava: 2024/01/02 17:09
  • autor: Petr Nosek