<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Fire Safety on Smart Home? Sure — But Secure!</title>
        <link>https://smarthome-aber-sicher.de/en/tags/fire-safety/</link>
        <description>Recent content in Fire Safety on Smart Home? Sure — But Secure!</description>
        <generator>Hugo -- gohugo.io</generator>
        <language>en</language>
        <lastBuildDate>Wed, 29 Apr 2026 18:00:00 +0200</lastBuildDate><atom:link href="https://smarthome-aber-sicher.de/en/tags/fire-safety/index.xml" rel="self" type="application/rss+xml" /><item>
        <title>The automation you hopefully never need – but absolutely should have</title>
        <link>https://smarthome-aber-sicher.de/en/blog/2026/04/29/the-automation-you-hopefully-never-need-but-absolutely-should-have/</link>
        <pubDate>Wed, 29 Apr 2026 18:00:00 +0200</pubDate>
        
        <guid>https://smarthome-aber-sicher.de/en/blog/2026/04/29/the-automation-you-hopefully-never-need-but-absolutely-should-have/</guid>
        <description>&lt;img src="https://smarthome-aber-sicher.de/blog/2026/04/29/die-automation-die-du-hoffentlich-nie-brauchst-aber-unbedingt-haben-solltest/cover.jpeg" alt="Featured image of post The automation you hopefully never need – but absolutely should have" /&gt;&lt;p&gt;My first video about the XSense smoke detectors surprised me a little. Not because of the numbers – but because of one particular moment in the video.&lt;/p&gt;
&lt;p&gt;I&amp;rsquo;d briefly mentioned what I&amp;rsquo;d built for the Home Assistant integration: when a smoke detector goes off, all lights come on, all blinds go up, and I get a push notification on my phone. Just a quick aside because it fit the topic. But those few seconds apparently triggered something – in the comments, and at XSense itself.&lt;/p&gt;
&lt;h2 id=&#34;how-this-video-came-about&#34;&gt;How this video came about
&lt;/h2&gt;&lt;p&gt;Shortly after publishing the first video, XSense reached out. I explained the blind and automatic light idea in an email – and they found it so interesting that they asked me to make a detailed video about it. Show exactly how it&amp;rsquo;s built. What happens step by step. And why.&lt;/p&gt;
&lt;p&gt;So here it is.&lt;/p&gt;
&lt;h2 id=&#34;why-this-automation-matters-more-than-it-sounds&#34;&gt;Why this automation matters more than it sounds
&lt;/h2&gt;&lt;p&gt;I&amp;rsquo;ll say it plainly: this isn&amp;rsquo;t a cool toy. This is an automation I hope you never need. But if you do need it, every second counts.&lt;/p&gt;
&lt;p&gt;In a fire, two things rob you of the precious time to escape: &lt;strong&gt;disorientation and panic.&lt;/strong&gt; Someone woken from sleep in the middle of the night often doesn&amp;rsquo;t immediately know where they are, where the door is, how to get out. And if everything is dark and the blinds are down – that&amp;rsquo;s a serious problem.&lt;/p&gt;
&lt;p&gt;A well-designed automation can help counter exactly that. Not as a replacement for smoke detectors, escape route plans or fire extinguishers – but as one more layer that works silently and reliably when it matters.&lt;/p&gt;
&lt;h2 id=&#34;whats-in-the-video&#34;&gt;What&amp;rsquo;s in the video
&lt;/h2&gt;&lt;p&gt;I build the complete automation live – from the MQTT entity of the smoke detector to the finished, tested automation chain in Home Assistant.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What happens when an alarm is triggered:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Push notification&lt;/strong&gt; to your smartphone – immediately, even if you&amp;rsquo;re not home&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;All lights come on&lt;/strong&gt; – escape routes become visible, no one stumbles in the dark&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;All blinds go up&lt;/strong&gt; – windows become accessible as emergency exits, firefighters can see what&amp;rsquo;s happening from outside&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;I also show what to watch out for when building it so the automation works when it actually matters – including when the internet is down or Home Assistant just restarted.&lt;/p&gt;
&lt;p&gt;And I explain why I deliberately didn&amp;rsquo;t add an automatic emergency call – it sounds like a good idea, but in practice it isn&amp;rsquo;t.&lt;/p&gt;
&lt;hr&gt;
&lt;div class=&#34;video-wrapper&#34;&gt;
    &lt;div class=&#34;video-placeholder&#34; onclick=&#34;loadIframe(this)&#34;&gt;
        &lt;img src=&#34;https://smarthome-aber-sicher.de/img/sas_youtube.png&#34; alt=&#34;YouTube Video&#34;&gt;
        &lt;div class=&#34;play-button&#34;&gt;&lt;/div&gt;
        &lt;div class=&#34;privacy-notice&#34;  style=&#34;color: var(--card-text-color-main);&#34;&gt;
            To load the video, please click the image. Please note that by doing so, data will be transmitted to YouTube.
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;script&gt;
    function loadIframe(element) {
        var iframe = document.createElement(&#39;iframe&#39;);
        iframe.setAttribute(&#39;loading&#39;, &#39;lazy&#39;);
        iframe.setAttribute(&#39;src&#39;, &#39;https://www.youtube-nocookie.com/embed/Bvav2c8F6Co&#39;);
        iframe.setAttribute(&#39;allowfullscreen&#39;, &#39;&#39;);
        iframe.setAttribute(&#39;title&#39;, &#39;YouTube Video&#39;);
        element.parentNode.replaceChild(iframe, element);
    }
&lt;/script&gt;
&lt;style&gt;
    .video-placeholder {
        position: relative;
        cursor: pointer;
    }
    .video-placeholder img {
        width: 100%;
        height: auto;
    }
    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: url(&#39;/img/youtube_button.svg&#39;) no-repeat center center;
        background-size: contain;
    }
    .video-placeholder:hover .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        background: url(&#39;/img/youtube_button_hover.svg&#39;) no-repeat center center;
        background-size: contain;
    }
    .privacy-notice {
        position: absolute;
        bottom: 50px;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 12px;
        text-align: center;
    }
&lt;/style&gt;

&lt;p&gt;What have you already automated for emergencies at home? Write it in the comments – I&amp;rsquo;m genuinely curious how you&amp;rsquo;ve solved this.&lt;/p&gt;
&lt;h2 id=&#34;the-devices-from-the-video&#34;&gt;The devices from the video
&lt;/h2&gt;&lt;p&gt;The XSense system the automation is built on:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;6-pack starter set + base station&lt;/strong&gt; (affiliate link):
👉 &lt;a class=&#34;link&#34; href=&#34;https://tidd.ly/4d7NCtr&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;XS01-M 6-pack at XSense&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;12-pack + base station&lt;/strong&gt; (affiliate link):
👉 &lt;a class=&#34;link&#34; href=&#34;https://tidd.ly/4cXza6m&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;XS01-M 12-pack at XSense&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Discount code:&lt;/strong&gt; &lt;code&gt;safexsense&lt;/code&gt; → 12% off your entire order (valid in X-Sense shop only), combinable with site promotions&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Alternatively via Amazon:&lt;/strong&gt;
👉 &lt;a class=&#34;link&#34; href=&#34;https://amzn.to/46Dncwk&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;XSense smoke detectors on Amazon&lt;/a&gt; (affiliate link)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This video was made in collaboration with XSense. Affiliate links: the price stays the same for you, but you support the work on my channel.&lt;/p&gt;





&lt;blockquote&gt;
    &lt;p&gt;Note: Links marked with &lt;em&gt;affiliate link&lt;/em&gt; are affiliate links. As an Amazon Associate I earn from qualifying purchases. This means I receive a small commission if you purchase through these links — at no extra cost to you. The revenue helps me run this blog and YouTube channel and keep creating content. Thank you for your support!&lt;/p&gt;&lt;span class=&#34;cite&#34;&gt;&lt;span&gt;― &lt;/span&gt;&lt;span&gt;Joachim&lt;/span&gt;&lt;cite&gt;&lt;/cite&gt;&lt;/span&gt;&lt;/blockquote&gt;
</description>
        </item>
        
    </channel>
</rss>
