<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Thema "Betreff: Zustand des Alarmsystems über Alexa abfragen" in Technische Probleme</title>
    <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66749#M23728</link>
    <description>&lt;LI-CODE lang="python"&gt;alias: Home Assistent Alarmsystem Status Abfrage
sequence:
  - action: alexa_media.update_last_called
    metadata: {}
    data: {}
    enabled: true
  - delay:
      hours: 0
      minutes: 0
      seconds: 0
      milliseconds: 2
  - action: notify.alexa_media_last_called
    metadata: {}
    enabled: true
    data:
      message: &amp;gt;-
        Alarmsystem {% if
        states('alarm_control_panel.intrusion_detection_system') == "disarmed"
        %} ist ausgeschaltet. {% elif
        states('alarm_control_panel.intrusion_detection_system') == "armed_away"
        %} ist im Profil Vollschutz aktiv. {% elif
        states('alarm_control_panel.intrusion_detection_system') == "armed_home"
        %} ist im Profil Teilschutz aktiv. {% elif
        states('alarm_control_panel.intrusion_detection_system') ==
        "armed_custom_bypass" %} ist im Profil Individuell altiv. {% else %} hat
        ein unbekannten Status. {% endif %}
icon: mdi:shield
mode: single&lt;/LI-CODE&gt;&lt;P&gt;Jetzt hab ichs verstanden.&lt;/P&gt;&lt;P&gt;Versuch mal das oben als Script in HA zu speichern.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Grüße&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 26 Aug 2024 15:16:17 GMT</pubDate>
    <dc:creator>M_Rapske</dc:creator>
    <dc:date>2024-08-26T15:16:17Z</dc:date>
    <item>
      <title>Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66682#M23700</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;Hallo zusammen,&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;ich würde gerne Alexa fragen, wie der Zustand des Alarmsystems ist.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Am liebsten ohne Home Assistant da ich nicht programmieren kann. Wenn dies aber nur mit HomeAssitant geht, wäre ich auch für diese Möglichkeit dankbar.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Es gibt bei Bosch Smart Home folgende Zustände:&lt;/P&gt;&lt;P&gt;Vollschutz Zuhause&lt;BR /&gt;Teilschutz Abwesen&lt;BR /&gt;Individuelle Benutzerdefiniert&lt;BR /&gt;Aus. Deaktiviert&lt;/P&gt;&lt;P&gt;Die Entität heisst bei HomeAssitant&lt;BR /&gt;alarm_control_panel.intrusion_detection_system&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ich verfüge über ein NABU Casa Konto.&lt;BR /&gt;Damit, wenn ich es richtig verstanden habe, kann man in Homesistent Sprachbefehlen senden.&lt;BR /&gt;So kann ich Dank eines Forummitgliedes durch den Befehl&lt;BR /&gt;“Alexa Status”&lt;BR /&gt;auch Abfragen welche Fenster noch offen sind…&lt;/P&gt;&lt;P&gt;Dazu würde folgendes Skript geschrieben.&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;alias:&lt;/SPAN&gt; &lt;SPAN class=""&gt;fenster_offen_test&lt;/SPAN&gt;
&lt;SPAN class=""&gt;sequence:&lt;/SPAN&gt;
  &lt;SPAN class=""&gt;-&lt;/SPAN&gt; &lt;SPAN class=""&gt;data:&lt;/SPAN&gt; {}
    &lt;SPAN class=""&gt;enabled:&lt;/SPAN&gt; &lt;SPAN class=""&gt;true&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;action:&lt;/SPAN&gt; &lt;SPAN class=""&gt;alexa_media.update_last_called&lt;/SPAN&gt;
  &lt;SPAN class=""&gt;-&lt;/SPAN&gt; &lt;SPAN class=""&gt;delay:&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;hours:&lt;/SPAN&gt; &lt;SPAN class=""&gt;0&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;minutes:&lt;/SPAN&gt; &lt;SPAN class=""&gt;0&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;seconds:&lt;/SPAN&gt; &lt;SPAN class=""&gt;0&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;milliseconds:&lt;/SPAN&gt; &lt;SPAN class=""&gt;2&lt;/SPAN&gt;
  &lt;SPAN class=""&gt;-&lt;/SPAN&gt; &lt;SPAN class=""&gt;data:&lt;/SPAN&gt;
      &lt;SPAN class=""&gt;message:&lt;/SPAN&gt; &lt;SPAN class=""&gt;&amp;gt;-
        {% set status = expand('binary_sensor.fenster_offen')  |
        selectattr('state', 'eq', 'on')                |
        map(attribute='name')                | list                | join (', ')
        %}        &lt;/SPAN&gt;
        {&lt;SPAN class=""&gt;%&lt;/SPAN&gt; &lt;SPAN class=""&gt;if&lt;/SPAN&gt; &lt;SPAN class=""&gt;status&lt;/SPAN&gt; &lt;SPAN class=""&gt;==&lt;/SPAN&gt; &lt;SPAN class=""&gt;''&lt;/SPAN&gt; &lt;SPAN class=""&gt;%&lt;/SPAN&gt;}            {{ &lt;SPAN class=""&gt;status|replace(""&lt;/SPAN&gt;, &lt;SPAN class=""&gt;"Alle Fenster und
        Türen sind geschlossen!"&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt; }}       {&lt;SPAN class=""&gt;%&lt;/SPAN&gt; &lt;SPAN class=""&gt;else&lt;/SPAN&gt; &lt;SPAN class=""&gt;%&lt;/SPAN&gt;}           
              &lt;SPAN class=""&gt;Folgende&lt;/SPAN&gt; &lt;SPAN class=""&gt;Fenster&lt;/SPAN&gt; &lt;SPAN class=""&gt;und&lt;/SPAN&gt; &lt;SPAN class=""&gt;Türen&lt;/SPAN&gt; &lt;SPAN class=""&gt;sind noch offen:&lt;/SPAN&gt; {{&lt;SPAN class=""&gt;status&lt;/SPAN&gt;}}       
        {&lt;SPAN class=""&gt;%&lt;/SPAN&gt; &lt;SPAN class=""&gt;endif&lt;/SPAN&gt; &lt;SPAN class=""&gt;%&lt;/SPAN&gt;}
    &lt;SPAN class=""&gt;enabled:&lt;/SPAN&gt; &lt;SPAN class=""&gt;true&lt;/SPAN&gt;
    &lt;SPAN class=""&gt;action:&lt;/SPAN&gt; &lt;SPAN class=""&gt;notify.alexa_media_last_called&lt;/SPAN&gt;
&lt;SPAN class=""&gt;mode:&lt;/SPAN&gt; &lt;SPAN class=""&gt;single&lt;/SPAN&gt;
&lt;SPAN class=""&gt;icon:&lt;/SPAN&gt; &lt;SPAN class=""&gt;mdi:window-open&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 24 Aug 2024 23:58:25 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66682#M23700</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2024-08-24T23:58:25Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66707#M23707</link>
      <description>&lt;P&gt;Hallo &lt;a href="https://community.bosch-smarthome.com/t5/user/viewprofilepage/user-id/266"&gt;@Frank&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;Mit Home Assistent geht es.&lt;/P&gt;&lt;P&gt;Ich hab kein Nabu Casa, nutze Emulated Hue für die Übergabe an Alexa.&lt;/P&gt;&lt;P&gt;Aber im Prinzip ist es Recht einfach.&lt;/P&gt;&lt;P&gt;Das was Alexa sagen soll ist z.b.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;{% if states('alarm_control_panel.intrusion_detection_system') == "armed_away" %}&lt;/P&gt;&lt;P&gt;Abwesend&lt;/P&gt;&lt;P&gt;{% elif states('alarm_control_panel.intrusion_detection_system') == "armed_home" %}&lt;/P&gt;&lt;P&gt;Teilschutz&lt;/P&gt;&lt;P&gt;{% elif states('alarm_control_panel.intrusion_detection_system') == "disarmed" %}&lt;/P&gt;&lt;P&gt;Deaktiviert&lt;/P&gt;&lt;P&gt;{% endif %}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Wenn du detaillierte Hilfe benötigst, sag bescheid. Ich bin heute noch unterwegs und kann morgen mehr helfen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Grüße&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2024 13:35:44 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66707#M23707</guid>
      <dc:creator>M_Rapske</dc:creator>
      <dc:date>2024-08-25T13:35:44Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66713#M23709</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1000013919.png" style="width: 1080px;"&gt;&lt;img src="https://community.bosch-smarthome.com/t5/image/serverpage/image-id/9953i25D167920D0CBAD2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1000013919.png" alt="1000013919.png" /&gt;&lt;/span&gt;&lt;a href="https://community.bosch-smarthome.com/t5/user/viewprofilepage/user-id/97"&gt;@M_Rapske&lt;/a&gt;&amp;nbsp;Dank für deine Hilfe.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Packe ich den Code in einen Helfer?&lt;/LI&gt;&lt;LI&gt;Wenn ja, in welchen?&lt;/LI&gt;&lt;LI&gt;Oder muss ich ein neues Skript erstellen. (Habe ich versucht, hat aber nicht geklappt&lt;/LI&gt;&lt;LI&gt;Fehlermeldung Message mailformat: expacted a dictinory&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sun, 25 Aug 2024 18:36:05 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66713#M23709</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2024-08-25T18:36:05Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66715#M23710</link>
      <description>&lt;P&gt;Nein, keinen Helfer.&lt;/P&gt;&lt;P&gt;Ich weiß nicht genau wie wie du mit Nabu Casa und Alexa die Daten übergibst.&lt;/P&gt;&lt;P&gt;Woher weiß Home Assistant was du Alexa gesagt hast?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ich arbeite weniger mit Skripten als mit Automationen.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Es wäre:&lt;/P&gt;&lt;P&gt;WENN [Alexa trigger]&lt;/P&gt;&lt;P&gt;DANN Alexa update last called&lt;/P&gt;&lt;P&gt;DANN Alexa Message last called&lt;/P&gt;&lt;UL class="lia-list-style-type-disc"&gt;&lt;LI&gt;Message:&amp;nbsp;&lt;P&gt;{% if states('alarm_control_panel.intrusion_detection_system') == "armed_away" %}&lt;/P&gt;&lt;P&gt;Abwesend&lt;/P&gt;&lt;P&gt;{% elif states('alarm_control_panel.intrusion_detection_system') == "armed_home" %}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Teilschutz&lt;/P&gt;&lt;P&gt;{% elif states('alarm_control_panel.intrusion_detection_system') == "disarmed" %}&lt;/P&gt;&lt;P&gt;Deaktiviert&lt;/P&gt;&lt;P&gt;{% endif %}&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2024-08-25 202213.png" style="width: 863px;"&gt;&lt;img src="https://community.bosch-smarthome.com/t5/image/serverpage/image-id/9954i3E1E3EA91C7DD324/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2024-08-25 202213.png" alt="Screenshot 2024-08-25 202213.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Der Grüne Text unter message, da muss das rein.&lt;/P&gt;&lt;P&gt;Und natürlich angepasst werden, was es genau sagen soll.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Grüße&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;___________________________________&lt;/P&gt;&lt;P&gt;EDIT:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hier einmal in schön:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Alarmsystem {% if states('alarm_control_panel.intrusion_detection_system')&lt;BR /&gt;== "disarmed" %} ist ausgeschaltet. {% elif&lt;BR /&gt;states('alarm_control_panel.intrusion_detection_system') == "armed_away" %}&lt;BR /&gt;ist im Profil Vollschutz aktiv. {% elif&lt;BR /&gt;states('alarm_control_panel.intrusion_detection_system') == "armed_home" %}&lt;BR /&gt;ist im Profil Teilschutz aktiv. {% elif&lt;BR /&gt;states('alarm_control_panel.intrusion_detection_system') ==&lt;BR /&gt;"armed_custom_bypass" %} ist im Profil Individuell altiv. {% else %} hat ein&lt;BR /&gt;unbekannten Status. {% endif %}&lt;/P&gt;</description>
      <pubDate>Sun, 25 Aug 2024 18:33:59 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66715#M23710</guid>
      <dc:creator>M_Rapske</dc:creator>
      <dc:date>2024-08-25T18:33:59Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66745#M23726</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.bosch-smarthome.com/t5/user/viewprofilepage/user-id/97"&gt;@M_Rapske&lt;/a&gt;&amp;nbsp; schrieb:&lt;BR /&gt;&lt;P&gt;Ich weiß nicht genau wie wie du mit Nabu Casa und Alexa die Daten übergibst.&lt;/P&gt;&lt;P&gt;Woher weiß Home Assistant was du Alexa gesagt hast?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Genau darin sehe ich auch das Problem. Ich weiß nicht wie ich dies in Form einer Automation auslösen kann. Wenn es ein Script wäre, würde dies in der Alexa-App erscheinen, so dass ich dies dann mit einer Alexa-Routine aktivieren könnte.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;alias: fenster_offen_test
sequence:
  - data: {}
    enabled: true
    action: alexa_media.update_last_called
  - delay:
      hours: 0
      minutes: 0
      seconds: 0
      milliseconds: 2
  - data:
      message: &amp;gt;-
        {% set status = expand('binary_sensor.fenster_offen')  |
        selectattr('state', 'eq', 'on')                |
        map(attribute='name')                | list                | join (', ')
        %}        

        {% if status == '' %}            {{ status|replace("", "Alle Fenster und
        Türen sind geschlossen!") }}       {% else %}           
              Folgende Fenster und Türen sind noch offen: {{status}}       
        {% endif %}
    enabled: true
    action: notify.alexa_media_last_called
mode: single
icon: mdi:window-open&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ich habe das obige Script:&lt;/P&gt;&lt;P&gt;Durch nabu casa erscheint dies dann in der ALEXA App mit dem Namen&lt;BR /&gt;fenster_offen_test&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In der Alexa App habe ich dann eine Routine erstellt&lt;/P&gt;&lt;P&gt;Wenn&lt;/P&gt;&lt;P&gt;Wenn: du sagts: "Alexa Status"&lt;/P&gt;&lt;P&gt;Alexa Wird fenster_offen_test&lt;BR /&gt;Szene&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Routine.JPG" style="width: 403px;"&gt;&lt;img src="https://community.bosch-smarthome.com/t5/image/serverpage/image-id/9960i831D8F6538966FE3/image-size/large?v=v2&amp;amp;px=999" role="button" title="Routine.JPG" alt="Routine.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 15:08:46 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66745#M23726</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2024-08-26T15:08:46Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66749#M23728</link>
      <description>&lt;LI-CODE lang="python"&gt;alias: Home Assistent Alarmsystem Status Abfrage
sequence:
  - action: alexa_media.update_last_called
    metadata: {}
    data: {}
    enabled: true
  - delay:
      hours: 0
      minutes: 0
      seconds: 0
      milliseconds: 2
  - action: notify.alexa_media_last_called
    metadata: {}
    enabled: true
    data:
      message: &amp;gt;-
        Alarmsystem {% if
        states('alarm_control_panel.intrusion_detection_system') == "disarmed"
        %} ist ausgeschaltet. {% elif
        states('alarm_control_panel.intrusion_detection_system') == "armed_away"
        %} ist im Profil Vollschutz aktiv. {% elif
        states('alarm_control_panel.intrusion_detection_system') == "armed_home"
        %} ist im Profil Teilschutz aktiv. {% elif
        states('alarm_control_panel.intrusion_detection_system') ==
        "armed_custom_bypass" %} ist im Profil Individuell altiv. {% else %} hat
        ein unbekannten Status. {% endif %}
icon: mdi:shield
mode: single&lt;/LI-CODE&gt;&lt;P&gt;Jetzt hab ichs verstanden.&lt;/P&gt;&lt;P&gt;Versuch mal das oben als Script in HA zu speichern.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Grüße&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 15:16:17 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66749#M23728</guid>
      <dc:creator>M_Rapske</dc:creator>
      <dc:date>2024-08-26T15:16:17Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66753#M23732</link>
      <description>&lt;P&gt;&lt;a href="https://community.bosch-smarthome.com/t5/user/viewprofilepage/user-id/97"&gt;@M_Rapske&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Wahnsinn, das funktioniert super.&lt;BR /&gt;Mensch, vielen Dank.&lt;BR /&gt;Wo lernt man das?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 16:27:06 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66753#M23732</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2024-08-26T16:27:06Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66754#M23733</link>
      <description>&lt;P&gt;Super. Perfekt. Das freut mich.&lt;/P&gt;&lt;P&gt;Ich hab in der Ausbildung im Maschinenbau programmieren gelernt.&lt;/P&gt;&lt;P&gt;Hab mir dann CSS, HTML, JAVA Script, Python selbst beigebracht. Und YAML oder Jinja (worauf YAML aufbaut) ist dann nicht all zu schwer. Hab vor 2 Jahren mit Home Assistent angefangen und seit dem meine Kenntnisse immer weiter ausgebaut.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jetzt nur noch alle Modi ausprobieren, falls ich nen Tippfehler habe.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":zwinkerndes_Gesicht:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Grüße&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 16:34:57 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66754#M23733</guid>
      <dc:creator>M_Rapske</dc:creator>
      <dc:date>2024-08-26T16:34:57Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66755#M23734</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.bosch-smarthome.com/t5/user/viewprofilepage/user-id/97"&gt;@M_Rapske&lt;/a&gt;&amp;nbsp; schrieb:&lt;BR /&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":zwinkerndes_Gesicht:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jetzt nur noch alle Modi ausprobieren, falls ich nen Tippfehler habe.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Grüße&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Habe ich gemacht. Funktioniert alles.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Gibt es zu yamal eine gute deutschsprachige Seite, wo man das vielleicht ein wenig lernen bzw. verstehen kann?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 16:45:29 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66755#M23734</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2024-08-26T16:45:29Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66757#M23735</link>
      <description>&lt;P&gt;Ich kenne keine. Ich habe mir immer die Programmierung von deren in Foren angeschaut, zerpflückt und das was ich brauchte verwendet.&lt;/P&gt;&lt;P&gt;Im Home Assistent und Entwicklerwerkzeuge -&amp;gt; Template kann mein den Code gut ausprobieren.&lt;/P&gt;&lt;P&gt;Dort ist ein Link zu Jinja2 Template, nur leider in Englisch.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="1000005933.jpg" style="width: 1220px;"&gt;&lt;img src="https://community.bosch-smarthome.com/t5/image/serverpage/image-id/9961i02192704204559F5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="1000005933.jpg" alt="1000005933.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Grüße&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 16:53:10 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66757#M23735</guid>
      <dc:creator>M_Rapske</dc:creator>
      <dc:date>2024-08-26T16:53:10Z</dc:date>
    </item>
    <item>
      <title>Betreff: Zustand des Alarmsystems über Alexa abfragen</title>
      <link>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66758#M23736</link>
      <description>&lt;P&gt;Vielen herzlichen Dank&lt;/P&gt;</description>
      <pubDate>Mon, 26 Aug 2024 17:20:08 GMT</pubDate>
      <guid>https://community.bosch-smarthome.com/t5/technische-probleme/zustand-des-alarmsystems-%C3%BCber-alexa-abfragen/m-p/66758#M23736</guid>
      <dc:creator>Frank</dc:creator>
      <dc:date>2024-08-26T17:20:08Z</dc:date>
    </item>
  </channel>
</rss>

