Tomi<p><strong>Flashing Xiaomi BLE sensors and integrating it in Home Assistant</strong></p><p>So I bough another 5 <a href="https://www.aliexpress.com/item/1005007309555823.html" rel="nofollow noopener noreferrer" target="_blank">Xiaomi Mi BLE sensors</a> (in Nov. 2024) model LYWSD03MMC. I wanted to flash them OTA (over-the-air) with custom firmware as previous 7 sensor (bougth in 2022-23). </p><p>But why would I want to flash it with custom firmware? To connect it to my Home Assistant, of course. Stock firmware connects only to Xiaomi phone app.</p><p>But not so fast.</p><p>After I bought the sensors, I found out that <strong>OTA using the web flasher currently doesn’t work</strong>. Xiaomi updated the sensor’s firmware (2.1…), closed the loop hole and it can not be ‘activated’ and then flashed over-the-air anymore [<a href="https://github.com/atc1441/ATC_MiThermometer/issues/298" rel="nofollow noopener noreferrer" target="_blank">see the debate on GitHub</a>]. </p><p>But smart people of internetz found the way to flash it via serial connection, usb2ttl adapter and some wires. Only the first flashing should be done with serial adapter.</p><p><strong>The process</strong></p><p>I downloaded this firmware: <a href="https://github.com/atc1441/ATC_MiThermometer/releases/download/79/ATC_Thermometer.bin" rel="nofollow noopener noreferrer" target="_blank">ATC_Thermometer.bin</a> (rel. 79)</p><p>I dissasembled the device (T5 driver):</p><p>I connected DuPont wires to the <a href="https://www.aliexpress.com/item/1005005921946096.html" rel="nofollow noopener noreferrer" target="_blank">USB2TTL adapter</a>, the wires with crocodile clips to DuPont wires via some pins. I didn’t match the colours of the wires so I had to check 10 times which wire goes where. Amateur forever.</p><p>Moreover, I bought 3 slightly different usb2ttl adapters in a pack (in 2023) and only one (dark blue one, HW-597) worked for this specific flashing.</p><p>Then I connected: </p><p>USB2TTL adapter | Xiaomi sensor</p><p>GND –> battery middle connector (-), </p><p>+3V –> battery side connector (+),</p><p>Tx –> P14 (just held the white wire to the P14 dot while flashing, no soldering needed).</p><p>I used <a href="https://pvvx.github.io/ATC_MiThermometer/USBCOMFlashTx.html" rel="nofollow noopener noreferrer" target="_blank">this serial flasher</a> (works in Chrome, not in FireFox). All settings default.</p><p>After flashing (30 secs), I disconnect the cables, assembled the device and put the battery in. </p><p>When assembling the back side, you have to press it hard on 3 sides to hear ‘clicks’ on each side. Otherwise the board will not have a good contact with LCD display.</p><p>I observed the MAC address rotating at the startup and wrote it down:</p><p>MAC: A4:C1:38:<strong>XX:YY:ZZ</strong></p><p>The first 3 numbers are always the same for all LYWs… sensors.</p><p>Opened the OTA <a href="https://atc1441.github.io/TelinkFlasher.html" rel="nofollow noopener noreferrer" target="_blank">Telink flasher</a>. Clicked ‘connect’. A new window with BLE devices shows up. Select the correct device.</p><p>Then I configured it with the following settings:</p><ul><li>Smiley: Comfort indicator</li><li>advertising: custom</li><li>Adv. interval: 1 min</li><li>Show battery: Enabled</li><li>Sensor instant advertising: temp 0,5 alarm, humi 5% instant alarm</li><li>Save current settings to flash</li></ul><p>Then I went to Home Assistant ESPHome add-in and opened the yaml of my BLE proxy. Added the following code for each sensor:</p><pre><code>...sensor:...- platform: atc_mithermometer mac_address: "A4:C1:38:XX:YY:ZZ" temperature: name: "ATC 11 (ROOM NAME) Temperature" humidity: name: "ATC 11 (ROOM NAME) Humidity" battery_level: name: "ATC 11 (ROOM NAME) Battery-Level" battery_voltage: name: "ATC 11 (ROOM NAME) Battery-Voltage" signal_strength: name: "ATC 11 (ROOM NAME) Signal" ...</code></pre><p>Saved, installed new firmware to my ESP32 BLE proxy.</p><p>Checked the ESP32 logs to see if it receives BLE data from new sensor:</p><p>All good!</p><p>Then I opened ESPHome integration in Home Assistant to check if new entities appeared. They have.</p><p>Looks like my ESP32 (Wroom, 2 core) can handle 11 Xiaomi BLE sensors + 1 BLE hand band (almost) without problems. </p><p>It outputs a yellow warning “<em>… tracker tool a long time for an operation – 80ms</em>“, but it isn’t noticable from HA perspective. </p><p><strong>Integration to Home Assistant</strong></p><p>No additional work here to be done. ESPHome integration adds the new entities from ESP32 BLE tracker automagically.</p><p>I’ve put one of my sensors to the attic, because I was always curious what’s the temperature there in winter and sommer. Moreover, I was interested in the <em>difference of outside temperature and attic temperature</em>.</p><p>The blue line is the attic temp., yellow and red are the outside temps:</p><p>What’s interesting is a phase shift of temperatures. Attic temp. follows outside temp. with small delay (2-3 hrs).</p><p>On average, attic temp is only 2-5C higher than outside temp. It’s not surprising, because there is 30cm of insulation on the attic floor.</p><p><strong>Calculating difference of 2 temperatures</strong></p><p>How did I calculated the difference of temperatures?</p><p>I’ve created a new helper, template sensor and entered the following code in template options/state template field:</p><pre><code>{{ (states('sensor.atc_11_podstresje_temperature') | float(2) - states('sensor.toplotna_outside_temperature') | float(2)) | round (1) }}</code></pre><p></p><p>[<a href="https://mastodon.social/deck/@po3mah/113509858758931309" rel="nofollow noopener noreferrer" target="_blank">Thread on Fediverse</a>]</p><p><strong>TL;DR</strong></p><ul><li>Xiaomi MI BLE sensors are quite reliable, I use them for 2-3 years without issues</li><li>Flashing with serial adapter is not so difficult as I thought, no soldering is needed</li><li>Battery lasts almost a year</li><li>Didn’t try to flash them with zigbee firmware yet. As I read, it drains the battery faster and I don’t see any advantages over BLE.</li></ul><p>Tags: <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/homeassistant/" target="_blank">#homeassistant</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/xiaomi/" target="_blank">#xiaomi</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/ble/" target="_blank">#ble</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/esphome/" target="_blank">#esphome</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/esp32/" target="_blank">#esp32</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/temperature/" target="_blank">#temperature</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/humidity/" target="_blank">#humidity</a></p><p>If you’re reading this on fediverse or RSS feed and the layout (embedded pics) is off or missing, <a href="https://blog.rozman.info/flashing-xiaomi-ble-sensors-and-integarting-it-in-home-assistant/" rel="nofollow noopener noreferrer" target="_blank">here’s the link to the original blog post</a>.</p><p></p><p><a href="https://blog.rozman.info/flashing-xiaomi-ble-sensors-and-integarting-it-in-home-assistant/" class="" rel="nofollow noopener noreferrer" target="_blank">https://blog.rozman.info/flashing-xiaomi-ble-sensors-and-integarting-it-in-home-assistant/</a></p><p><a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/ble/" target="_blank">#ble</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/esp32/" target="_blank">#ESP32</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/esphome/" target="_blank">#ESPHome</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/homeassistant/" target="_blank">#homeassistant</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/humidity/" target="_blank">#humidity</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/temperature/" target="_blank">#temperature</a> <a rel="nofollow noopener noreferrer" class="hashtag u-tag u-category" href="https://blog.rozman.info/tag/xiaomi/" target="_blank">#xiaomi</a></p>