Lettura valori di più sonde temperatura sullo stesso pin

Salve a tutti sto cercando di creare un sistema di controllo delle temperature di due frigoriferi che le mostri anche su webseever e che poi crei alert nel caso dovessero salire troppo.
Utilizzo 2 sonde impermeabili DS18B20 con la librerira oneWire per collegarle allo stesso pin (il 4 nel mio caso).
A livello di collegamenti tutto funziona, ma non riesco a mostrare i valori di tutte e due le sonde sulla pagina web:

#include <WiFi.h>
#include <ESPAsyncWebServer.h>
#include <OneWire.h>
#include <DallasTemperature.h>
#define ONE_WIRE_BUS 4 //pin per tutte le sonde
OneWire oneWire(ONE_WIRE_BUS); 
DallasTemperature sensors(&oneWire);
DeviceAddress sensor1 = { 0x28, 0x55, 0x47, 0xD9, 0x17, 0x20, 0x6, 0xDD };
DeviceAddress sensor2 = { 0x28, 0xB, 0x6E, 0xDD, 0x12, 0x21, 0x1, 0x97 };

String temperatureF = "";
String temperatureC = "";

unsigned long lastTime = 0;  
unsigned long timerDelay = 3000;

const char* ssid = "XXXXXX";
const char* password = "######";
AsyncWebServer server(80);

String readDSTemperatureC() {
  sensors.requestTemperatures();
  float tempC = sensors.getTempCByIndex(0);
  return String(tempC);
}

String readDSTemperatureF() {
  sensors.requestTemperatures(); 
  float tempF = sensors.getTempFByIndex(0);
  return String(tempF);
}

const char index_html[] PROGMEM = R"rawliteral(
<!DOCTYPE HTML><html>
<head>
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
  <style>
    html {
     font-family: Arial;
     display: inline-block;
     margin: 0px auto;
     text-align: center;
    }
    h2 { font-size: 3.0rem; }
    p { font-size: 3.0rem; }
    .units { font-size: 1.2rem; }
    .ds-labels{
      font-size: 1.5rem;
      vertical-align:middle;
      padding-bottom: 15px;
    }
  </style>
</head>
<body>
  <h2>Server temperature</h2>
  <p>
    <i class="fas fa-thermometer-half" style="color:#059e8a;"></i> 
    <span class="ds-labels">Temperature C°</span> 
    <span id="temperaturec">%TEMPERATUREC%</span>
    <sup class="units">&deg;C</sup>
  </p>
  <p>
    <i class="fas fa-thermometer-half" style="color:#059e8a;"></i> 
    <span class="ds-labels">Temperature Fahrenheit</span>
    <span id="temperaturef">%TEMPERATUREF%</span>
    <sup class="units">&deg;F</sup>
  </p>
</body>
<script>
setInterval(function ( ) {
  var xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
      document.getElementById("temperaturec").innerHTML = this.responseText;
    }
  };
  xhttp.open("GET", "/temperaturec", true);
  xhttp.send();
}, 10000) ;
setInterval(function ( ) {
  var xhttp = new XMLHttpRequest();
  xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
      document.getElementById("temperaturef").innerHTML = this.responseText;
    }
  };
  xhttp.open("GET", "/temperaturef", true);
  xhttp.send();
}, 10000) ;
</script>
</html>)rawliteral";

// Replaces placeholder with DS18B20 values
String processor(const String& var){
  //Serial.println(var);
  if(var == "TEMPERATUREC"){
    return temperatureC;
  }
  else if(var == "TEMPERATUREF"){
    return temperatureF;
  }
  return String();
}

void setup(){
  Serial.begin(115200);
  Serial.println();
  sensors.begin();

  temperatureC = readDSTemperatureC();
  temperatureF = readDSTemperatureF();

  // Connect to Wi-Fi
  WiFi.begin(ssid, password);
  Serial.println("Connessione in corso");
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  Serial.println();
  Serial.println(WiFi.localIP());

  server.on("/", HTTP_GET, [](AsyncWebServerRequest *request){
    request->send_P(200, "text/html", index_html, processor);
  });
  server.on("/temperaturec", HTTP_GET, [](AsyncWebServerRequest *request){
    request->send_P(200, "text/plain", temperatureC.c_str());
  });
  server.on("/temperaturef", HTTP_GET, [](AsyncWebServerRequest *request){
    request->send_P(200, "text/plain", temperatureF.c_str());
  });
  // Start server
  server.begin();
}
 
void loop(){
  if ((millis() - lastTime) > timerDelay) {
    temperatureC = readDSTemperatureC();
    temperatureF = readDSTemperatureF();
    lastTime = millis();
  }  
}

Il problema è che essendo novellino di prog, però sta sicuramente nel creare un array per i valori tempC e tempF nelle dui stringhe readDSTemperatureC e readDSTemperatureF ma non so come scriverlo !
Grazie

Perchè un array ? Prevedi che poi metterai più di 2 frigo ?
Se saranno solo 2, duplica la parte di un sensore e dai un nome diverso alle variabili
esempio temperatureC e temperatureC2. temperatureC è quella che hai e che legge sensore 0 e temperatureC2 sarà quella che legge sensore 1

Anche se io non uso quel sensore mi chiedevo: il parametro di getTempCByIndex() è l'identificativo del sensore, quindi se hai due sensori uno avrà indice 0 e l'altro 1 (per sapere quanti ne "vede" userai "sensors.getDeviceCount();"), per cui ti basta memorizzare i dati dei due sensori in due diverse variabili, che poi userai per rispondere alle GET.

Note a margine:

  1. le "String" sono deprecate su Arduino perché la loro scarsa gestione della memoria può causare problemi, ti consiglio di iniziare a studiare ed usare le "stringhe C" ossia puntatori a char ("char*").
  2. poi C ed F sono semplicemente la stessa lettura ma restituita in gradi centigradi e Farenheit: ti serve veramente avere i valori Farenheit?...

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.