Catégorie : Rénovation & Bâti

  • Measuring Real-World ITE Thermal Phase Shift: An ESPHome and DS18B20 Tutorial

    Introduction: Why Measure Real-World Phase Shift?

    During an external thermal insulation (ITE) retrofit, the choice of insulation material (such as wood fiber) is often driven by theoretical thermal phase shift. However, there is often a gap between theoretical calculations and real-world performance on historical walls. This tutorial explains how to accurately measure this phase shift by embedding DS18B20 sensors within the wall layers and integrating them into Home Assistant using ESPHome.

    Hardware Setup: Multi-Layer Integration

    For this measurement, we use an ESP32 microcontroller flashed with ESPHome and three waterproof DS18B20 temperature sensors wired on a OneWire bus:

    1. Outdoor Sensor (T_ext): Placed on the exterior facade, sheltered from direct sunlight.
    2. Interface Sensor (T_intf): Placed precisely between the old brick/stone wall and the new ITE insulation.
    3. Indoor Sensor (T_int): Placed on the inner surface of the wall.

    ESPHome Configuration for the OneWire Bus

    Here is the YAML configuration to integrate into your ESPHome node to report the three temperatures with ultra-high 12-bit resolution:

    dallas:
      - pin: GPIO23

    sensor:
      - platform: dallas
        address: 0x2c00000b12a34f28
        name: "ITE Outdoor Temperature"
      - platform: dallas
        address: 0x3c00000b12b45e12
        name: "Insulation Interface Temperature"
      - platform: dallas
        address: 0x4c00000b12c56f23
        name: "Indoor Wall Temperature"

    Analyzing Phase Shift in Home Assistant

    Thermal phase shift is the time delay between the peak outdoor temperature and the peak interface/indoor temperature. By exporting your Home Assistant data to InfluxDB and Grafana, you can easily calculate the time delta (t2 – t1) of daily maximums. High-performance wood fiber should yield a measured shift of 10 to 12 hours, successfully flattening the summer heat spikes.

  • Mesurer le déphasage thermique réel d’une ITE : Tuto ESPHome et DS18B20

    Introduction : Pourquoi mesurer le déphasage réel ?

    Lors d’une rénovation thermique par l’extérieur (ITE), le choix de l’isolant (comme la fibre de bois) est souvent guidé par le déphasage thermique théorique. Cependant, entre les calculs théoriques et la réalité physique du bâti ancien, il y a souvent un fossé. Ce tutoriel explique comment mesurer précisément ce déphasage en installant des sondes DS18B20 au cœur des couches de votre mur et en les intégrant dans Home Assistant via ESPHome.

    Le montage matériel : Intégration multi-couches

    Pour cette mesure, nous utilisons un microcontrôleur ESP32 flashé sous ESPHome et trois sondes de température étanches DS18B20 câblées en bus OneWire :

    1. Sonde Extérieure (T_ext) : Placée sur la façade extérieure, protégée du rayonnement direct du soleil.
    2. Sonde Interface (T_intf) : Placée précisément entre l’ancien mur en brique/pierre et le nouvel isolant ITE.
    3. Sonde Intérieure (T_int) : Placée sur la surface intérieure du mur.

    Configuration ESPHome pour le bus OneWire

    Voici la configuration YAML à intégrer dans votre nœud ESPHome pour remonter les trois températures de manière ultra-précise avec une résolution de 12 bits :

    dallas:
      - pin: GPIO23

    sensor:
      - platform: dallas
        address: 0x2c00000b12a34f28
        name: "Température Extérieure ITE"
      - platform: dallas
        address: 0x3c00000b12b45e12
        name: "Température Interface Isolant"
      - platform: dallas
        address: 0x4c00000b12c56f23
        name: "Température Intérieure Mur"

    Analyse du déphasage sous Home Assistant

    Le déphasage thermique correspond au retard temporel entre le pic de température extérieure et le pic de température à l’interface ou à l’intérieur. En exportant vos données de Home Assistant vers InfluxDB et Grafana, vous pouvez facilement calculer le delta temporel (t2 – t1) des maximums journaliers. Une fibre de bois performante doit révéler un déphasage mesuré d’environ 10 à 12 heures, lissant efficacement les pics de chaleur estivaux.