<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>Blinds on Smart Home? Sure — But Secure!</title>
        <link>https://smarthome-aber-sicher.de/en/tags/blinds/</link>
        <description>Recent content in Blinds 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/blinds/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>
        <item>
        <title>Home Assistant A-Z: J is for Blinds - More Than Just Up and Down</title>
        <link>https://smarthome-aber-sicher.de/en/blog/2025/11/23/home-assistant-a-z-j-is-for-blinds-more-than-just-up-and-down/</link>
        <pubDate>Sun, 23 Nov 2025 00:00:00 +0000</pubDate>
        
        <guid>https://smarthome-aber-sicher.de/en/blog/2025/11/23/home-assistant-a-z-j-is-for-blinds-more-than-just-up-and-down/</guid>
        <description>&lt;img src="https://smarthome-aber-sicher.de/blog/2025/11/23/home-assistant-a-z-j-wie-jalousien-mehr-als-nur-rauf-und-runter/cover.png" alt="Featured image of post Home Assistant A-Z: J is for Blinds - More Than Just Up and Down" /&gt;&lt;h2 id=&#34;welcome-to-the-a-z-series-j-is-for-blinds&#34;&gt;Welcome to the A-Z Series: J is for Blinds
&lt;/h2&gt;&lt;p&gt;In today&amp;rsquo;s episode of the &lt;strong&gt;Home Assistant A-Z Series&lt;/strong&gt; we tackle a topic with far more potential than most people realize: &lt;strong&gt;blinds and roller shutters&lt;/strong&gt;! From elegant dashboard control and time-based automations to fully automatic, sun-dependent shading – I&amp;rsquo;ll show you how to make your home more energy-efficient and comfortable.&lt;/p&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/IRhopr5y9MQ&#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;h2 id=&#34;more-than-just-up-and-down&#34;&gt;More Than Just Up and Down
&lt;/h2&gt;&lt;p&gt;Most people use their smart roller shutters only for the basics. But there&amp;rsquo;s so much more potential hiding in them! In this article and the accompanying video I&amp;rsquo;ll walk you through:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Dashboard control with live feedback&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Time-based and event-driven automations&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Groups and template sensors for a quick overview&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Fully automatic, sun-dependent shading&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Seasonal adjustments to your setup&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;dashboard-control-the-foundation&#34;&gt;Dashboard Control: The Foundation
&lt;/h2&gt;&lt;p&gt;The first step toward smart roller shutters is &lt;strong&gt;intuitive control through your dashboard&lt;/strong&gt;.&lt;/p&gt;
&lt;h3 id=&#34;position-control-with-live-feedback&#34;&gt;Position Control with Live Feedback
&lt;/h3&gt;&lt;p&gt;If your roller shutters can report their position back, you can see in Home Assistant not just the current status, but also:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Move to precise intermediate positions&lt;/strong&gt; using a slider&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Watch live&lt;/strong&gt; as the shutter reaches the desired position&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Use classic Open/Close/Stop controls&lt;/strong&gt; on a secondary level&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;In the video you&amp;rsquo;ll see&lt;/strong&gt; how elegant this looks in practice!&lt;/p&gt;
&lt;h3 id=&#34;visualization-on-floor-plans&#34;&gt;Visualization on Floor Plans
&lt;/h3&gt;&lt;p&gt;Things get especially clear when you project your roller shutters onto a &lt;strong&gt;floor plan of your home&lt;/strong&gt;. At a glance you can see:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Which shutters are open&lt;/li&gt;
&lt;li&gt;Which are currently closing&lt;/li&gt;
&lt;li&gt;The status of all windows at the same time&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Under the hood:&lt;/strong&gt; A simple picture-elements card with positioned shutter controls. &lt;strong&gt;I show you exactly how this works in the video!&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&#34;time-based-automations-the-smart-home-classic&#34;&gt;Time-Based Automations: The Smart Home Classic
&lt;/h2&gt;&lt;p&gt;Constantly tapping buttons isn&amp;rsquo;t smart – so let&amp;rsquo;s automate!&lt;/p&gt;
&lt;h3 id=&#34;automation-1-close-automatically-at-night&#34;&gt;Automation 1: Close Automatically at Night
&lt;/h3&gt;&lt;p&gt;The first useful automation makes sure roller shutters are closed at night. You can use various triggers:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;State-based&lt;/strong&gt;: When you go to bed (Smart Home state &amp;ldquo;Night&amp;rdquo;)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Time-based&lt;/strong&gt;: At a specific time (different for weekdays and weekends)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Condition-driven&lt;/strong&gt;: Only when it&amp;rsquo;s cool outside (to make use of the insulating effect)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;In the video I show you concrete examples&lt;/strong&gt; from my own setup!&lt;/p&gt;
&lt;h3 id=&#34;automation-2-open-automatically-in-the-morning&#34;&gt;Automation 2: Open Automatically in the Morning
&lt;/h3&gt;&lt;p&gt;Symmetrically, when you get up in the morning the shutters open again automatically. Alternatively, you can use the &lt;strong&gt;sun&amp;rsquo;s position&lt;/strong&gt; as a trigger.&lt;/p&gt;
&lt;h3 id=&#34;intelligent-schedules-with-helpers&#34;&gt;Intelligent Schedules with Helpers
&lt;/h3&gt;&lt;p&gt;For different schedules (weekday vs. weekend) &lt;strong&gt;schedule helpers&lt;/strong&gt; are perfect. You can define them as &amp;ldquo;quiet hours&amp;rdquo; and reference them in your automations.&lt;/p&gt;
&lt;h2 id=&#34;groups-and-overview-everything-under-control&#34;&gt;Groups and Overview: Everything Under Control
&lt;/h2&gt;&lt;h3 id=&#34;grouping-roller-shutters&#34;&gt;Grouping Roller Shutters
&lt;/h3&gt;&lt;p&gt;You can create any &lt;strong&gt;groups of roller shutters&lt;/strong&gt; you like – for example:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;All shutters in the living room&lt;/li&gt;
&lt;li&gt;All shutters on the south-facing side&lt;/li&gt;
&lt;li&gt;All shutters in the entire house&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;With a single click&lt;/strong&gt; you can then open or close all shutters in that group.&lt;/p&gt;
&lt;h3 id=&#34;template-sensor-for-an-overview&#34;&gt;Template Sensor for an Overview
&lt;/h3&gt;&lt;p&gt;A small &lt;strong&gt;template sensor&lt;/strong&gt; shows you on your dashboard how many roller shutters are currently closed:&lt;/p&gt;
&lt;div class=&#34;highlight&#34;&gt;&lt;div class=&#34;chroma&#34;&gt;
&lt;table class=&#34;lntable&#34;&gt;&lt;tr&gt;&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code&gt;&lt;span class=&#34;lnt&#34;&gt;1
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;2
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;3
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;4
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;5
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;6
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;7
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;8
&lt;/span&gt;&lt;span class=&#34;lnt&#34;&gt;9
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class=&#34;lntd&#34;&gt;
&lt;pre tabindex=&#34;0&#34; class=&#34;chroma&#34;&gt;&lt;code class=&#34;language-yaml&#34; data-lang=&#34;yaml&#34;&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;nt&#34;&gt;sensor&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;  &lt;/span&gt;- &lt;span class=&#34;nt&#34;&gt;platform&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;l&#34;&gt;template&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;    &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;sensors&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;      &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;closed_covers_count&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;friendly_name&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;s2&#34;&gt;&amp;#34;Closed Roller Shutters&amp;#34;&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;w&#34;&gt;        &lt;/span&gt;&lt;span class=&#34;nt&#34;&gt;value_template&lt;/span&gt;&lt;span class=&#34;p&#34;&gt;:&lt;/span&gt;&lt;span class=&#34;w&#34;&gt; &lt;/span&gt;&lt;span class=&#34;p&#34;&gt;&amp;gt;&lt;/span&gt;&lt;span class=&#34;sd&#34;&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;sd&#34;&gt;          {{ states.cover 
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;sd&#34;&gt;             | selectattr(&amp;#39;state&amp;#39;, &amp;#39;eq&amp;#39;, &amp;#39;closed&amp;#39;) 
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class=&#34;line&#34;&gt;&lt;span class=&#34;cl&#34;&gt;&lt;span class=&#34;sd&#34;&gt;             | list | count }}&lt;/span&gt;&lt;span class=&#34;w&#34;&gt;          
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;This way you always have a clear overview! &lt;strong&gt;In the video you can see how I use this on my dashboard.&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&#34;automatic-shading-the-game-changer&#34;&gt;Automatic Shading: The Game Changer
&lt;/h2&gt;&lt;p&gt;Now things get really interesting: &lt;strong&gt;fully automatic, sun-dependent shading&lt;/strong&gt;!&lt;/p&gt;
&lt;h3 id=&#34;the-two-components&#34;&gt;The Two Components
&lt;/h3&gt;&lt;p&gt;My system consists of two automation groups:&lt;/p&gt;
&lt;h4 id=&#34;1-sun-position-calculation-per-facade&#34;&gt;1. Sun Position Calculation per Facade
&lt;/h4&gt;&lt;p&gt;The first group calculates for each cardinal direction whether the sun is currently shining on that facade:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Blueprint-based&lt;/strong&gt;: I use a blueprint that I&amp;rsquo;ve instantiated four times&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;One helper per facade&lt;/strong&gt;: North, South, East, West&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Dynamic calculation&lt;/strong&gt;: Takes the current sun position into account&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;I cover the technical details and the blueprint thoroughly in the video!&lt;/strong&gt;&lt;/p&gt;
&lt;h4 id=&#34;2-individual-control-per-window&#34;&gt;2. Individual Control per Window
&lt;/h4&gt;&lt;p&gt;The second group controls each individual roller shutter:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;One blueprint per shutter&lt;/strong&gt;: Each shutter can be configured individually&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Window contacts taken into account&lt;/strong&gt;: Window open? Shutter stays up!&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;References the sun-position helpers&lt;/strong&gt;: Only closes when the sun shines on that facade&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Example from my setup:&lt;/strong&gt; The roller shutter in the utility room on the north side closes as soon as the sun (even in summer, only at the edges of the day) shines on that facade.&lt;/p&gt;
&lt;h3 id=&#34;why-one-automation-per-window&#34;&gt;Why One Automation per Window?
&lt;/h3&gt;&lt;p&gt;This approach enables &lt;strong&gt;maximum flexibility&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Each shutter can be individually enabled or disabled&lt;/li&gt;
&lt;li&gt;Different rooms can be controlled differently&lt;/li&gt;
&lt;li&gt;Seasonal adjustments are easy to make&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;seasonal-configuration-adapting-throughout-the-year&#34;&gt;Seasonal Configuration: Adapting Throughout the Year
&lt;/h2&gt;&lt;p&gt;The great thing about this system: you can &lt;strong&gt;adjust which rooms should be shaded&lt;/strong&gt; as the seasons change.&lt;/p&gt;
&lt;h3 id=&#34;my-scenarios&#34;&gt;My Scenarios
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;Winter (currently):&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;✅ All shading automations &lt;strong&gt;disabled&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;🌞 I enjoy every ray of sunshine that enters the apartment&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Transition periods (spring/autumn):&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;✅ Only bedroom automations &lt;strong&gt;enabled&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;🏠 Rest of the apartment: sunshine welcome&lt;/li&gt;
&lt;li&gt;😴 Bedroom: should stay cool&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Midsummer:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;✅ All shading automations &lt;strong&gt;enabled&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;❄️ Maximum cooling through consistent shading&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;On my dashboard&lt;/strong&gt; I have an elegant overview where I can see at a glance which automations are active. &lt;strong&gt;I show you this view live in the video!&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&#34;hardware-basics&#34;&gt;Hardware Basics
&lt;/h2&gt;&lt;p&gt;Wondering how to make your roller shutters smart in the first place?&lt;/p&gt;
&lt;p&gt;In my &lt;strong&gt;Shelly roller shutter video&lt;/strong&gt; I cover in detail:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Hardware selection (Shelly Plus 2PM, Gen3, Gen4)&lt;/li&gt;
&lt;li&gt;Wiring in the flush-mount box&lt;/li&gt;
&lt;li&gt;Software setup and security&lt;/li&gt;
&lt;li&gt;Home Assistant integration&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;👉 &lt;strong&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/post/shelly-jalousie/&#34; &gt;To the Shelly Blinds Video&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&#34;the-blueprints-in-detail&#34;&gt;The Blueprints in Detail
&lt;/h2&gt;&lt;p&gt;The blueprints for sun-position calculation and individual control are the core of my system.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Interested in the details?&lt;/strong&gt; Let me know in the comments under the video! If there&amp;rsquo;s enough interest, I&amp;rsquo;ll make a &lt;strong&gt;bonus video&lt;/strong&gt; dedicated to these blueprints, covering:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Complete code&lt;/li&gt;
&lt;li&gt;Step-by-step explanation&lt;/li&gt;
&lt;li&gt;Customization options&lt;/li&gt;
&lt;li&gt;Download links&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;practical-benefits-in-everyday-life&#34;&gt;Practical Benefits in Everyday Life
&lt;/h2&gt;&lt;p&gt;What does this actually get you?&lt;/p&gt;
&lt;h3 id=&#34;comfort&#34;&gt;Comfort
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Automatic adjustment&lt;/strong&gt; to sunlight&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Never need to manually intervene&lt;/strong&gt; again&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Smart Home thinks ahead&lt;/strong&gt; – even when you&amp;rsquo;re not home&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;energy-efficiency&#34;&gt;Energy Efficiency
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Cooler rooms in summer&lt;/strong&gt; through consistent shading&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Warmer rooms in winter&lt;/strong&gt; through the insulating effect at night&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Less air conditioning/heating&lt;/strong&gt; required&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;security&#34;&gt;Security
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Presence simulation&lt;/strong&gt; while on vacation&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Automatic closing&lt;/strong&gt; during storms possible&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Integration&lt;/strong&gt; with alarm systems&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;your-path-to-smart-blind-control&#34;&gt;Your Path to Smart Blind Control
&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Level 1 – Basics:&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Add roller shutters to Home Assistant&lt;/li&gt;
&lt;li&gt;Set up dashboard control&lt;/li&gt;
&lt;li&gt;Create first time-based automations&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Level 2 – Comfort:&lt;/strong&gt;
4. Create groups
5. Add template sensors for overview
6. Visualize on floor plan&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Level 3 – Pro:&lt;/strong&gt;
7. Implement sun-position calculation
8. Set up individual shading automations
9. Configure seasonal adjustments&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;I walk you through every step in detail in the video!&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&#34;further-links&#34;&gt;Further Links
&lt;/h2&gt;








&lt;blockquote&gt;
    &lt;p&gt;&lt;figure&gt;&lt;img src=&#34;https://smarthome-aber-sicher.de/img/tibber_logo.svg&#34; width=&#34;20%&#34;&gt;
&lt;/figure&gt;
&lt;p&gt;Do you already have a dynamic electricity tariff? Tibber is one of the first providers to offer such a tariff in Germany. I&amp;rsquo;ve been a customer since October 2022, and it&amp;rsquo;s been a thoroughly positive experience. Tibber offers a clearly structured, modern app where you always have full oversight of your electricity tariff and costs. Pricing is very transparent: Tibber only charges what electricity actually costs on the exchange at any given moment (plus standard grid fees, etc.), plus a service fee of just €3.99 per month.&lt;/p&gt;
&lt;p&gt;If Tibber sounds like an option for you, I&amp;rsquo;d be glad if you sign up via &lt;a class=&#34;link&#34; href=&#34;https://invite.tibber.com/vkccaupl&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;my referral link&lt;/a&gt;. That gets both you and me &lt;strong&gt;€100 for the Tibber Store&lt;/strong&gt;, where you can buy various IoT hardware for your smart home. If you&amp;rsquo;re already a Tibber customer and haven&amp;rsquo;t used a referral link, you can &lt;a class=&#34;link&#34; href=&#34;https://support.tibber.com/de/articles/4601431-tibber-freund-innen-bonus#h_ae8df266c0&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;still do so within 14 days&lt;/a&gt; — use code &lt;code&gt;vkccaupl&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Have questions or still unsure? Don&amp;rsquo;t hesitate to reach out. I&amp;rsquo;m happy to help you figure out whether Tibber is the right choice for you. And if it turns out it isn&amp;rsquo;t — you can cancel Tibber month by month at any time!&lt;/p&gt;
&lt;p&gt;Thank you for your support! It makes it possible for me to keep creating videos for you.&lt;/p&gt;
&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;
 
&lt;p&gt;&lt;strong&gt;More helpful articles from the A-Z Series:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/blog/2025/10/19/home-assistant-a-z-a-wie-automationen-starte-dein-intelligentes-zuhause/&#34; &gt;A is for Automations&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/blog/2025/10/26/home-assistant-a-z-b-wie-blueprints-fertige-automationen-einfach-nutzen/&#34; &gt;B is for Blueprints&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/blog/2025/11/16/home-assistant-a-z-h-wie-helfer-die-unsichtbaren-assistenten/&#34; &gt;H is for Helpers&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/blog/2025/11/09/home-assistant-a-z-i-wie-integrationen-geraete-einfach-einbinden/&#34; &gt;I is for Integrations&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Hardware:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/post/shelly-jalousie/&#34; &gt;Shelly Blind Control&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;hr&gt;
&lt;p&gt;&lt;em&gt;The Home Assistant A-Z Series brings you the most important Home Assistant concepts in short videos and in-depth articles. A new letter every Sunday, a little more knowledge each time!&lt;/em&gt;&lt;/p&gt;
&lt;nav class=&#34;ha-az-nav&#34; aria-label=&#34;Home Assistant A-Z Navigation&#34;&gt;
  &lt;div class=&#34;ha-az-nav-label&#34;&gt;📚 Home Assistant A–Z · Teil 10 von 15&lt;/div&gt;
  &lt;div class=&#34;ha-az-nav-inner&#34;&gt;&lt;a href=&#34;https://smarthome-aber-sicher.de/post/ha-az/09-integrationen/&#34; class=&#34;ha-az-nav-btn ha-az-nav-prev&#34;&gt;← I · Integrationen&lt;/a&gt;&lt;a href=&#34;https://smarthome-aber-sicher.de/post/ha-az/11-ki/&#34; class=&#34;ha-az-nav-btn ha-az-nav-next&#34;&gt;K · KI →&lt;/a&gt;&lt;/div&gt;
&lt;/nav&gt;
</description>
        </item>
        <item>
        <title>Make Your Blinds Smart with Shelly – No Cloud, Local, and Affordable!</title>
        <link>https://smarthome-aber-sicher.de/en/blog/2025/11/09/make-your-blinds-smart-with-shelly-no-cloud-local-and-affordable/</link>
        <pubDate>Sun, 09 Nov 2025 00:00:00 +0000</pubDate>
        
        <guid>https://smarthome-aber-sicher.de/en/blog/2025/11/09/make-your-blinds-smart-with-shelly-no-cloud-local-and-affordable/</guid>
        <description>&lt;img src="https://smarthome-aber-sicher.de/blog/2025/11/09/jalousien-mit-shelly-sicher-smart-machen-ohne-cloud-lokal-und-g%C3%BCnstig/cover.png" alt="Featured image of post Make Your Blinds Smart with Shelly – No Cloud, Local, and Affordable!" /&gt;&lt;h2 id=&#34;the-problem-electric-roller-shutters-but-not-smart&#34;&gt;The Problem: Electric Roller Shutters, But Not Smart
&lt;/h2&gt;&lt;p&gt;You have &lt;strong&gt;electric roller shutters or blinds&lt;/strong&gt;, but still have to &lt;strong&gt;operate them directly at the wall switch&lt;/strong&gt;? That&amp;rsquo;s a real shame, because an electric motor is already &lt;strong&gt;halfway there&lt;/strong&gt; to a smart blind!&lt;/p&gt;
&lt;p&gt;With a &lt;strong&gt;Shelly module&lt;/strong&gt;, you can make your existing roller shutters smart and integrate them into your smart home – &lt;strong&gt;completely local, without any cloud dependency&lt;/strong&gt; and surprisingly affordable.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;In the new video I show you the complete implementation!&lt;/strong&gt;&lt;/p&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/kGFCyuJz5wc&#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;h2 id=&#34;why-shelly-for-blinds&#34;&gt;Why Shelly for Blinds?
&lt;/h2&gt;&lt;h3 id=&#34;-completely-local&#34;&gt;✅ &lt;strong&gt;Completely Local&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;No cloud connection required&lt;/li&gt;
&lt;li&gt;Works even during internet outages&lt;/li&gt;
&lt;li&gt;Your data stays with you&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;-affordable-and-flexible&#34;&gt;✅ &lt;strong&gt;Affordable and Flexible&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Shelly Plus 2PM: ~€20–25&lt;/li&gt;
&lt;li&gt;Older Shelly 2.5: Even cheaper&lt;/li&gt;
&lt;li&gt;Fits in any in-wall junction box&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;-safe-installation&#34;&gt;✅ &lt;strong&gt;Safe Installation&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Built-in safety functions&lt;/li&gt;
&lt;li&gt;Prevents simultaneous activation of both directions&lt;/li&gt;
&lt;li&gt;Calibration for precise positioning&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;choosing-the-right-hardware&#34;&gt;Choosing the Right Hardware
&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;In the video I show various Shelly models:&lt;/strong&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;&lt;/p&gt;
&lt;h3 id=&#34;recommendation-shelly-plus-2pm&#34;&gt;&lt;strong&gt;Recommendation: Shelly Plus 2PM&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Current successor model&lt;/li&gt;
&lt;li&gt;Lowest price on the market&lt;/li&gt;
&lt;li&gt;Perfect for blinds and roller shutters&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a class=&#34;link&#34; href=&#34;https://amzn.to/3WxBUiQ&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Shelly Plus 2PM on Amazon&lt;/a&gt;&lt;/strong&gt; (paid link) ← most affordable option&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;alternative-shelly-2-gen3&#34;&gt;&lt;strong&gt;Alternative: Shelly 2 Gen3&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;New generation with more features&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a class=&#34;link&#34; href=&#34;https://amzn.to/47kpLEh&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Shelly 2 Gen3 on Amazon&lt;/a&gt;&lt;/strong&gt; (paid link)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;latest-generation-shelly-2-gen4&#34;&gt;&lt;strong&gt;Latest Generation: Shelly 2 Gen4&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Newest version available&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&lt;a class=&#34;link&#34; href=&#34;https://amzn.to/47tocCI&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;Shelly 2 Gen4 on Amazon&lt;/a&gt;&lt;/strong&gt; (paid link)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;You can safely save money&lt;/strong&gt; and stick with the Plus devices!&lt;/p&gt;
&lt;h2 id=&#34;wiring-what-you-need-to-watch-out-for&#34;&gt;Wiring: What You Need to Watch Out For
&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Correct wiring is crucial!&lt;/strong&gt; In the video I explain step by step:&lt;/p&gt;
&lt;h3 id=&#34;power-supply&#34;&gt;&lt;strong&gt;Power Supply:&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Neutral wire (N)&lt;/strong&gt; and &lt;strong&gt;live wire (L)&lt;/strong&gt; from the in-wall junction box&lt;/li&gt;
&lt;li&gt;Connected to the corresponding terminals of the Shelly&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;switch-connection&#34;&gt;&lt;strong&gt;Switch Connection:&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;Route the live wire through to the wall switch&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;&amp;ldquo;Up&amp;rdquo; switch&lt;/strong&gt; and &lt;strong&gt;&amp;ldquo;Down&amp;rdquo; switch&lt;/strong&gt; to &lt;strong&gt;S1&lt;/strong&gt; and &lt;strong&gt;S2&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Order doesn&amp;rsquo;t matter – can be changed in software later&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;motor-connection&#34;&gt;&lt;strong&gt;Motor Connection:&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Outputs O1 and O2&lt;/strong&gt; to the roller shutter motor&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;O1:&lt;/strong&gt; Move up&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;O2:&lt;/strong&gt; Move down&lt;/li&gt;
&lt;li&gt;Again: order can be changed later in software&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;⚠️ Important:&lt;/strong&gt; Always follow 230V electrical safety rules!&lt;/p&gt;
&lt;h2 id=&#34;software-setup-safety-first&#34;&gt;Software Setup: Safety First
&lt;/h2&gt;&lt;h3 id=&#34;1-secure-initial-setup&#34;&gt;&lt;strong&gt;1. Secure Initial Setup&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;In the video I show two approaches:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Recommended: Shelly App&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;✅ Uses Bluetooth (encrypted)&lt;/li&gt;
&lt;li&gt;✅ More secure than hotspot&lt;/li&gt;
&lt;li&gt;✅ Easy to use&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Alternative: Hotspot&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;⚠️ Unencrypted&lt;/li&gt;
&lt;li&gt;⚠️ Wi-Fi password can be intercepted&lt;/li&gt;
&lt;li&gt;✅ Works without the app&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;2-disable-the-cloud&#34;&gt;&lt;strong&gt;2. Disable the Cloud&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;Important for local use:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Set Cloud Settings to &amp;ldquo;Disabled&amp;rdquo;&lt;/li&gt;
&lt;li&gt;Set Server to &amp;ldquo;Disconnected&amp;rdquo;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Why?&lt;/strong&gt; Complete local control&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;3-device-profile-the-critical-setting&#34;&gt;&lt;strong&gt;3. Device Profile: The Critical Setting&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;You absolutely must configure this:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Settings → Device Profile → &amp;ldquo;Cover&amp;rdquo;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Why is this so important?&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Prevents simultaneous activation of both outputs&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Without this setting:&lt;/strong&gt; Motor damage is possible!&lt;/li&gt;
&lt;li&gt;Shelly then &amp;ldquo;knows&amp;rdquo; it&amp;rsquo;s controlling a roller shutter&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;calibration-and-fine-tuning&#34;&gt;Calibration and Fine-Tuning
&lt;/h2&gt;&lt;h3 id=&#34;check-directions&#34;&gt;&lt;strong&gt;Check Directions&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;After the initial setup:&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Test the buttons on the web interface&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Wrong direction?&lt;/strong&gt; → Enable Reverse Directions&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Check wall switch&lt;/strong&gt; → Enable Swap Inputs if needed&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;calibration-run&#34;&gt;&lt;strong&gt;Calibration Run&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;Enables precise positioning:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;What happens:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Roller shutter moves completely down&lt;/li&gt;
&lt;li&gt;Then completely up&lt;/li&gt;
&lt;li&gt;Stops at various intermediate positions&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Result:&lt;/strong&gt; Any position can be precisely controlled&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;In the video you can see the entire process live!&lt;/strong&gt;&lt;/p&gt;
&lt;h2 id=&#34;home-assistant-integration&#34;&gt;Home Assistant Integration
&lt;/h2&gt;&lt;h3 id=&#34;automatic-discovery&#34;&gt;&lt;strong&gt;Automatic Discovery&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;It&amp;rsquo;s this easy:&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Install the &lt;strong&gt;Shelly Integration&lt;/strong&gt; in Home Assistant&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;New devices&lt;/strong&gt; are discovered automatically&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;One click&lt;/strong&gt; → Integration complete&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&#34;dashboard-and-automations&#34;&gt;&lt;strong&gt;Dashboard and Automations&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;After integration:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;✅ Display roller shutters on the dashboard&lt;/li&gt;
&lt;li&gt;✅ Create &lt;strong&gt;automations&lt;/strong&gt;:
&lt;ul&gt;
&lt;li&gt;Automatic opening/closing&lt;/li&gt;
&lt;li&gt;Sun protection during intense sunlight&lt;/li&gt;
&lt;li&gt;Time-based schedules&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; I&amp;rsquo;ll show more blind automations in Home Assistant in an upcoming video!&lt;/p&gt;
&lt;h2 id=&#34;practical-benefits-in-daily-life&#34;&gt;Practical Benefits in Daily Life
&lt;/h2&gt;&lt;h3 id=&#34;convenience&#34;&gt;&lt;strong&gt;Convenience&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;App control&lt;/strong&gt; from anywhere in the home&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Automation&lt;/strong&gt; based on time of day&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Scenes&lt;/strong&gt; for different situations&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;security&#34;&gt;&lt;strong&gt;Security&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Presence simulation&lt;/strong&gt; while on vacation&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Automatic closing&lt;/strong&gt; during storms&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Integration&lt;/strong&gt; into a security system&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;energy-efficiency&#34;&gt;&lt;strong&gt;Energy Efficiency&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Intelligent sun protection&lt;/strong&gt; reduces cooling costs&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Heat retention&lt;/strong&gt; in winter by closing at the right time&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Light optimization&lt;/strong&gt; through precise positioning&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;cost-benefit-analysis&#34;&gt;Cost-Benefit Analysis
&lt;/h2&gt;&lt;h3 id=&#34;investment&#34;&gt;&lt;strong&gt;Investment:&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Shelly Plus 2PM:&lt;/strong&gt; ~€20–25&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Installation:&lt;/strong&gt; DIY-friendly with basic knowledge&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Ongoing costs:&lt;/strong&gt; None (local solution)&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;alternative-ready-made-smart-blinds&#34;&gt;&lt;strong&gt;Alternative: Ready-Made Smart Blinds&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Cost:&lt;/strong&gt; €200–500+ per roller shutter&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Cloud dependency:&lt;/strong&gt; Usually required&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Flexibility:&lt;/strong&gt; Tied to the manufacturer&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Conclusion:&lt;/strong&gt; The Shelly solution is &lt;strong&gt;significantly cheaper&lt;/strong&gt; and &lt;strong&gt;more flexible&lt;/strong&gt;!&lt;/p&gt;
&lt;h2 id=&#34;avoiding-common-mistakes&#34;&gt;Avoiding Common Mistakes
&lt;/h2&gt;&lt;h3 id=&#34;-forgetting-the-device-profile&#34;&gt;&lt;strong&gt;❌ Forgetting the Device Profile&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;Problem:&lt;/strong&gt; Motor can be damaged
&lt;strong&gt;Solution:&lt;/strong&gt; Always set it to &amp;ldquo;Cover&amp;rdquo;&lt;/p&gt;
&lt;h3 id=&#34;-wrong-wiring&#34;&gt;&lt;strong&gt;❌ Wrong Wiring&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;Problem:&lt;/strong&gt; Roller shutters move in the wrong direction
&lt;strong&gt;Solution:&lt;/strong&gt; Correction possible in software&lt;/p&gt;
&lt;h3 id=&#34;-leaving-the-cloud-enabled&#34;&gt;&lt;strong&gt;❌ Leaving the Cloud Enabled&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;Problem:&lt;/strong&gt; Dependency on manufacturer servers
&lt;strong&gt;Solution:&lt;/strong&gt; Deliberately disable the cloud&lt;/p&gt;
&lt;h3 id=&#34;-skipping-calibration&#34;&gt;&lt;strong&gt;❌ Skipping Calibration&lt;/strong&gt;
&lt;/h3&gt;&lt;p&gt;&lt;strong&gt;Problem:&lt;/strong&gt; No precise positioning
&lt;strong&gt;Solution:&lt;/strong&gt; Run the calibration sequence&lt;/p&gt;
&lt;h2 id=&#34;the-video-shows-everything-live&#34;&gt;The Video Shows Everything Live
&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;In the video you&amp;rsquo;ll see:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;✅ &lt;strong&gt;Hardware comparison&lt;/strong&gt; of various Shelly models&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Wiring diagram&lt;/strong&gt; explained in detail&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Software setup&lt;/strong&gt; step by step&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Home Assistant integration&lt;/strong&gt; live&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Calibration&lt;/strong&gt; in action&lt;/li&gt;
&lt;li&gt;✅ &lt;strong&gt;Practical tips&lt;/strong&gt; from my own installation&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;whats-next-even-more-smart-home&#34;&gt;What&amp;rsquo;s Next: Even More Smart Home
&lt;/h2&gt;&lt;h3 id=&#34;more-shelly-use-cases&#34;&gt;&lt;strong&gt;More Shelly Use Cases:&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Heating control&lt;/strong&gt; (dedicated video available)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Light control&lt;/strong&gt; with dimming&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Garage door automation&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&#34;home-assistant-blind-features&#34;&gt;&lt;strong&gt;Home Assistant Blind Features:&lt;/strong&gt;
&lt;/h3&gt;&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Complex automations&lt;/strong&gt; (upcoming video)&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Time-based schedules&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Weather-dependent control&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&#34;share-your-experience&#34;&gt;Share Your Experience
&lt;/h2&gt;&lt;p&gt;&lt;strong&gt;Let me know in the comments:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;How do you currently control your roller shutters?&lt;/li&gt;
&lt;li&gt;Do you already have experience with Shelly?&lt;/li&gt;
&lt;li&gt;What automation ideas do you have?&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Make sure to watch the video&lt;/strong&gt; – it shows every step live and gives you all the important details for a safe installation!&lt;/p&gt;
&lt;h2 id=&#34;further-reading&#34;&gt;Further Reading
&lt;/h2&gt;








&lt;blockquote&gt;
    &lt;p&gt;&lt;figure&gt;&lt;img src=&#34;https://smarthome-aber-sicher.de/img/tibber_logo.svg&#34; width=&#34;20%&#34;&gt;
&lt;/figure&gt;
&lt;p&gt;Do you already have a dynamic electricity tariff? Tibber is one of the first providers to offer such a tariff in Germany. I&amp;rsquo;ve been a customer since October 2022, and it&amp;rsquo;s been a thoroughly positive experience. Tibber offers a clearly structured, modern app where you always have full oversight of your electricity tariff and costs. Pricing is very transparent: Tibber only charges what electricity actually costs on the exchange at any given moment (plus standard grid fees, etc.), plus a service fee of just €3.99 per month.&lt;/p&gt;
&lt;p&gt;If Tibber sounds like an option for you, I&amp;rsquo;d be glad if you sign up via &lt;a class=&#34;link&#34; href=&#34;https://invite.tibber.com/vkccaupl&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;my referral link&lt;/a&gt;. That gets both you and me &lt;strong&gt;€100 for the Tibber Store&lt;/strong&gt;, where you can buy various IoT hardware for your smart home. If you&amp;rsquo;re already a Tibber customer and haven&amp;rsquo;t used a referral link, you can &lt;a class=&#34;link&#34; href=&#34;https://support.tibber.com/de/articles/4601431-tibber-freund-innen-bonus#h_ae8df266c0&#34;  target=&#34;_blank&#34; rel=&#34;noopener&#34;
    &gt;still do so within 14 days&lt;/a&gt; — use code &lt;code&gt;vkccaupl&lt;/code&gt;.&lt;/p&gt;
&lt;p&gt;Have questions or still unsure? Don&amp;rsquo;t hesitate to reach out. I&amp;rsquo;m happy to help you figure out whether Tibber is the right choice for you. And if it turns out it isn&amp;rsquo;t — you can cancel Tibber month by month at any time!&lt;/p&gt;
&lt;p&gt;Thank you for your support! It makes it possible for me to keep creating videos for you.&lt;/p&gt;
&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;
 
&lt;p&gt;&lt;strong&gt;More helpful articles:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/post/shelly-heizung/&#34; &gt;Shelly Heating Control&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/post/garagentore-mit-shellys-fit-furs-smarthome-machen/&#34; &gt;Making Garage Doors Smart with Shelly&lt;/a&gt; – The basic principle: how a Shelly relay controls a garage door&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/post/smarte-garage/&#34; &gt;Smart Garage 2.0: Garage Door, Lights &amp;amp; Automations with Shelly Blue&lt;/a&gt; – The extended garage setup with motion sensors and automations&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/tags/a-z-serie/&#34; &gt;Home Assistant A-Z Series&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a class=&#34;link&#34; href=&#34;https://smarthome-aber-sicher.de/categories/cybersecurity/&#34; &gt;Smart Home Security&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</description>
        </item>
        
    </channel>
</rss>
