[KW 15 / 25] : Was habt ihr diese Woche im Smart Home geplant / umgesetzt?

Hallo Communityđź«¶,
hier der Wochenbeitrag fĂĽr KW 15 in 2025 ĂĽber unser aller Smart Home und weitere technische Dinge.

Ich mach mal den Anfang:

Folgendes wurde abgeschlossen:

  • Einbau Shelly 3EM bei Schwiegereltern fĂĽr dynamische Nutzung des BKW & Speicher

Folgendes habe ich vor:

  • Diese Woche habe ich tatsächlich nichts vor :slight_smile:
  • Korrektur: neue Steckerleiste fĂĽr die Werkstatt installiert
  • Korrektur: 3 Leuchten fĂĽr die Werkstatt installier
4 „Gefällt mir“

Ach, was ist los…:question::wink:
Eine schöne Woche wünsche ich.

GruĂź Kalle

2 „Gefällt mir“

Ich warte auf meinen homeassistant voice preview edition der heute ankommen soll.
Dann die Einrichtung und Test mit Open AI.
Bin sehr gespannt.

4 „Gefällt mir“
  • KĂĽhltruhe/Schränke
    • Nachdem ich diesen preiswerten >> Temperatursensor << erfolgreich in der KĂĽhltruhe platziert habe und keine Fehlfunktion wegen Kälte oder Abschirmung aufgetreten ist, habe ich weitere 4 Sensoren in Fern-Ost geordert.
      Die sollen ihren Dienst in weiteren 2 Kühlschränken verrichten.
  • Pool
    • Pool und Infrastruktur aus dem Winterschlaf wecken.
    • Das Wasser wurde, dank „Wintermittel“ erfolgreich ĂĽberwintert.
    • Die 24.000 Liter sind zurzeit glasklar unter der Abdeckplane.
    • Aufbau der Filter-Pumpenanlage (noch keine BefĂĽllung wegen Frostgefahr)
    • Wiederinbetriebnahme der Automtionen und Ăśberwachungen - darĂĽber werde ich gesondert berichten.
    • Steuerung der Pumpe fĂĽr die Solarwärmetauscher
      • Bisher wurde die Pumpe in Abhängigkeit der Sonnenintensität gesteuert.
      • Das hat schon ganz gut (80%) funktioniert, aber in der kommenden Saison möchte ich es temperaturgeregelt einrichten.
      • Hierzu wird ein weiterer DS18B20 FĂĽhler und ein ESP8266 zum Einsatz kommen.
5 „Gefällt mir“

@KalleM58 @Smartzeug, muss auch mal sein. :wink: Man kann ja nicht nur Smarthomezeug machen. Bei mir wird es auch ruhiger diese Woche.

Hatte gestern noch meine Pool-Flow-Card vorgestellt. Die Saison beginnt wieder so langsam. :slight_smile:

Mein Huawei Netzteil hat zwei 12cm LĂĽfter auf Alurippen spendiert bekommen. Die LĂĽfter werden ĂĽber ESPHome in HA integriert und lassen sich entsprechend schalten. Automatisierung muss ich noch machen, so dass er bei 40 Grad automatisch einschaltet.

Meine Speicher PopUp Card habe ich auch ĂĽberarbeitet und an meinen Speicher angepasst. Jetzt wird auch die Effizienz vom Laden angezeigt. :slight_smile:

6 „Gefällt mir“

Das sieht sehr nett aus :+1:
das wäre auch etwas für mich, könntest du vielleicht deinen Code posten?

1 „Gefällt mir“

Na klar, teile ich doch gerne. :slight_smile:

type: vertical-stack
cards:
  - type: custom:stack-in-card
    card_mod:
      style: |
        ha-card {
          border: none !important;
          border-radius: 0px !important;
          background: none;
        }
    cards:
      - type: picture-elements
        card_mod:
          style: |
            ha-card {
              border: none !important;
              border-radius: 0px !important;
              width: 75% !important;
              margin: 0 auto;    
            }          
            :host {
              font-size: 0em !important;
              --label-badge-red: steelblue !important;
              --label-badge-background-color: transparent !important;
            }
        elements:
          - type: state-badge
            entity: sensor.batterie_neo800_spannung_eingang_1
            style:
              top: 23%
              left: 34%
              "--ha-label-badge-font-size": 14px
            tap_action:
              action: none
            hold_action:
              action: none
            title: Volt
          - type: state-badge
            entity: sensor.batterie_kapazitat_kwh
            style:
              top: 28%
              left: 50%
              "--ha-label-badge-font-size": 14px
            tap_action:
              action: none
            hold_action:
              action: none
            title: Volt
          - type: state-badge
            entity: sensor.batterie_kapazitat_ah
            style:
              top: 33%
              left: 66%
              "--ha-label-badge-font-size": 14px
            tap_action:
              action: none
            hold_action:
              action: none
            title: Temp
        image: local/bilder/hausspeicher.png
      - type: vertical-stack
        cards:
          - type: custom:bar-card
            card_mod:
              style: |
                ha-card {
                  border: none !important;
                  margin-top: -20px;
                  --primary-color: #7bc13c !important;  
                }
                #states {
                  padding: 16px !important;
                }  
                bar-card-currentbar {
                  border-radius: 3px !important; 
                    
                  {% if states['switch.acpowervonbatterie'].state == 'on' %}
                  background: linear-gradient(270deg, red, orange, green);
                  background-size: 300% 100%;
                  animation: gradientShiftNormal 3s linear infinite;
                  clip-path: inset(0 calc(100% - var(--bar-percent)) 0 0);

                  {% elif states['switch.acpowerzubatterie'].state == 'on' %}
                  background: linear-gradient(270deg, red, orange, green);
                  background-size: 300% 100%;
                  animation: gradientShiftReverse 3s linear infinite;
                  clip-path: inset(0 calc(100% - var(--bar-percent)) 0 0);

                  {% else %}
                  background: linear-gradient(to right, darkorange 15%, orange 25%, yellow 50%, green 100%);
                  clip-path: inset(0 calc(100% - var(--bar-percent)) 0 0);
                  {% endif %}
                }                  
                bar-card-backgroundbar { 
                  border-radius: 3px !important; 
                  background: linear-gradient(to right, darkorange 15%, orange 25%, yellow 50%, green 100%);
                  clip-path: inset(0 calc(100% - var(--bar-percent)) 0 0);
                }
                @keyframes gradientShiftNormal {
                  0% { background-position: 0% 50%; }
                  100% { background-position: 100% 50%; }
                }
                @keyframes gradientShiftReverse {
                  100% { background-position: 0% 50%; }
                  0% { background-position: 100% 50%; }
                }
            name: Hausspeicher
            positions:
              name: inside
              value: inside
              indicator: "off"
              icon: "off"
            unit_of_measurement: "%"
            max: 100
            height: 25px
            severity:
              - color: "#ff0000"
                from: 0
                to: 25
              - color: darkorange
                from: 25
                to: 50
              - color: orange
                from: 50
                to: 75
              - color: "#7bc13c"
                from: 75
                to: 100
            entities:
              - entity: sensor.batterie_ladezustand
      - type: horizontal-stack
        cards:
          - type: custom:bar-card
            card_mod:
              style: |
                ha-card {
                  border: none !important;
                }
                #states {
                  padding: 0 16px 0 16px !important;
                }               
                bar-card-backgroundbar { 
                  border-radius: 3px !important;  
                }
                bar-card-currentbar {
                  border-radius: 3px !important;  
                }
            name: Total Eingang
            positions:
              name: inside
              value: inside
              indicator: "off"
              icon: "off"
            unit_of_measurement: W
            max: 100
            height: 20px
            severity:
              - color: grey
                from: 0
                to: 50
              - color: darkorange
                from: 50
                to: 100
              - color: orange
                from: 100
                to: 300
              - color: "#7bc13c"
                from: 300
                to: 1000
              - color: green
                from: 1000
                to: 2000
            entities:
              - entity: sensor.acpowerzubatterie_energy_power
          - type: custom:bar-card
            card_mod:
              style: |
                ha-card {
                  border: none !important;
                }
                #states {
                  padding: 0 16px 10px 16px !important;
                }               
                bar-card-backgroundbar { 
                  border-radius: 3px !important;  
                }
                bar-card-currentbar {
                  border-radius: 3px !important;  
                }
            name: Total Augang
            positions:
              name: inside
              value: inside
              indicator: "off"
              icon: "off"
            unit_of_measurement: W
            max: 300
            height: 20px
            severity:
              - color: grey
                from: 0
                to: 10
              - color: "#7bc13c"
                from: 10
                to: 250
              - color: orange
                from: 250
                to: 400
              - color: darkorange
                from: 400
                to: 600
              - color: red
                from: 600
                to: 1000
            entities:
              - entity: sensor.acpowervonbatterie_energy_power
      - type: horizontal-stack
        cards:
          - show_name: true
            show_icon: true
            type: button
            tap_action:
              action: toggle
            entity: switch.acpowervonbatterie
            name: AC
            icon: mdi:power-socket-eu
            card_mod:
              style: |
                ha-card {
                  margin: 0 0 0 20px !important;
                  background: rgb(128,128,128, 0.1) !important;
                  border: 1px solid grey !important;
                  border-radius: 8px !important;
                  width: 80%
                }
          - show_name: true
            show_icon: true
            type: button
            tap_action:
              action: toggle
            entity: switch.acpowerzubatterie
            name: Charge
            icon: mdi:current-dc
            card_mod:
              style: |
                ha-card {
                  margin: 0 0 0 20px !important;
                  background: rgb(128,128,128, 0.1) !important;
                  border: 1px solid grey !important;
                  border-radius: 8px !important;
                  width: 80%
                }
          - show_name: true
            show_icon: true
            type: button
            tap_action:
              action: toggle
            entity: fan.huawei_lufter_living_room_fan
            name: LĂĽfter
            card_mod:
              style: |
                ha-card {
                  margin: 0 0 0 20px !important;
                  background: rgb(128,128,128, 0.1) !important;
                  border: 1px solid grey !important;
                  border-radius: 8px !important;
                  width: 80%
                }          
      - type: horizontal-stack
        cards:
          - type: entities
            card_mod:
              style: |
                ha-card {
                  border: none !important;
                  margin-top: -5px;
                  border-radius: 0px !important;
                }
            entities:
              - entity: sensor.acpowervonbatterie_energy_total
                name: Total out
                icon: mdi:home-lightning-bolt-outline
              - entity: sensor.acpowerzubatterie_energy_total
                name: Total in
                icon: mdi:solar-power-variant
            theme: grey-icon
            state_color: false
            show_header_toggle: false
          - type: entities
            card_mod:
              style: |
                ha-card {
                  border: none !important;
                  margin-top: -5px;
                  border-radius: 0px !important;
                }
            entities:
              - entity: sensor.acpowervonbatterie_energy_today
                name: Heute out
                icon: mdi:home-lightning-bolt-outline
              - entity: sensor.acpowerzubatterie_energy_today
                name: Heute in
                icon: mdi:solar-power-variant
            theme: grey-icon
            state_color: false
            show_header_toggle: false
  - type: history-graph
    card_mod:
      style: |
        ha-card {
          background: none !important;
          border: none !important;
          margin-top: -25px;
          border-radius: 0px !important;
        }
    entities:
      - entity: switch.acpowerzubatterie
        name: " "
    hours_to_show: 24
  - type: horizontal-stack
    cards:
      - type: custom:bar-card
        name: Output
        direction: up
        positions:
          name: inside
          value: outside
          indicator: "off"
          icon: "off"
        height: 150
        width: 80%
        unit_of_measurement: W
        max: 2000
        entities:
          - entity: sensor.huawei_charger_all_data
        card_mod:
          style: |
            ha-card {
              margin-top: -20px;
              background: none !important;
              border: none;   
            }
            bar-card-backgroundbar { 
              border-radius: 0px !important;  
              background: linear-gradient(to top, darkorange 15%, yellow 40%, green 100%);
            }
            bar-card-currentbar {
              border-radius: 0px !important;  
              background: linear-gradient(to top, darkorange 15%, yellow 40%, green 100%);
              clip-path: inset(calc(100% - var(--bar-percent)) 0 0 0);
            }
      - type: custom:bar-card
        name: Input
        direction: up
        positions:
          name: inside
          value: outside
          indicator: "off"
          icon: "off"
        height: 150
        width: 80%
        unit_of_measurement: W
        max: 2000
        entities:
          - entity: sensor.huawei_charger_inputpower
        card_mod:
          style: |
            ha-card {
              margin-top: -20px;
              background: none !important;
              border: none;   
            }
            bar-card-backgroundbar { 
              border-radius: 0px !important;  
              background: linear-gradient(to top, darkorange 15%, yellow 40%, green 100%);
            }
            bar-card-currentbar {
              border-radius: 0px !important;  
              background: linear-gradient(to top, darkorange 15%, yellow 40%, green 100%);
              clip-path: inset(calc(100% - var(--bar-percent)) 0 0 0);
            }
      - type: custom:bar-card
        name: Effiz.
        direction: up
        positions:
          name: inside
          value: outside
          indicator: "off"
          icon: "off"
        height: 150
        width: 80%
        unit_of_measurement: "%"
        max: 1
        entities:
          - entity: sensor.huawei_charger_efficiency
        card_mod:
          style: |
            ha-card {
              margin-top: -20px;
              background: none !important;
              border: none;   
            }
            bar-card-backgroundbar { 
              border-radius: 0px !important;  
              background: linear-gradient(to top, darkorange 15%, yellow 70%, green 100%);
            }
            bar-card-currentbar {
              border-radius: 0px !important;  
              background: linear-gradient(to top, darkorange 15%, yellow 70%, green 100%);
              clip-path: inset(calc(100% - var(--bar-percent)) 0 0 0);
            }
      - type: custom:bar-card
        name: Volt
        direction: up
        positions:
          name: inside
          value: outside
          indicator: "off"
          icon: "off"
        height: 150
        width: 80%
        unit_of_measurement: V
        max: 58
        entities:
          - entity: sensor.huawei_charger_output_voltage
        card_mod:
          style: |
            ha-card {
              margin-top: -20px;
              background: none !important;
              border: none;   
            }
            bar-card-backgroundbar { 
              border-radius: 0px !important;  
              background: linear-gradient(to top, steelblue 35%, green 70%, orange 100%);
            }
            bar-card-currentbar {
              border-radius: 0px !important;  
              background: linear-gradient(to top, darkorange 35%, yellow 60%, green 100%);
              clip-path: inset(calc(100% - var(--bar-percent)) 0 0 0);
            }
      - type: custom:bar-card
        name: Temp
        direction: up
        positions:
          name: inside
          value: outside
          indicator: "off"
          icon: "off"
        height: 150
        width: 80%
        unit_of_measurement: °C
        max: 70
        entities:
          - entity: sensor.huawei_charger_temperature
        card_mod:
          style: |
            ha-card {              
              margin-top: -20px;
              background: none !important;
              border: none;   
            }
            bar-card-backgroundbar { 
              border-radius: 0px !important;  
              background: linear-gradient(to top, green 15%, yellow 40%, darkorange 75%, red 100%);
            }
            bar-card-currentbar {
              border-radius: 0px !important;  
              background: linear-gradient(to top, steelblue 15%, green 40%, darkorange 75%, red 100%);
              clip-path: inset(calc(100% - var(--bar-percent)) 0 0 0);
            }

4 „Gefällt mir“

Jetzt weiß ich auch was ich noch mache, Danke schön :pray:

1 „Gefällt mir“

Diese Woche wird nur ein neuer Wlan-Repeater im OG in Betrieb gehen.

1 „Gefällt mir“

Synchronizität der Ereignisse. :slight_smile: ich habe letzte Woche einen neuen Repeater im EG in Betrieb genommen, den bisherigen ins UG verfrachtet und dort den Powerline Repeater entfernt :slight_smile:

2 „Gefällt mir“

Ich muss mich korrigieren.
Diese Woche habe ich endlich meiner Werkstatt eine neue Steckerleiste und 3 Leuchten spendiert :slightly_smiling_face:


5 „Gefällt mir“

Schicke Werkstatt, ist alles so sauber. Du musst dort arbeiten… :joy: Ich muss meine auch mal wieder aufräumen.

Amazon war ganz schön spät heute, aber mein neues Spielzeug (1800er) ist noch angekommen und jetzt habe ich erstmal Kaufverbot erhalten… :wink: Open DTU habe ich aber vorher noch bestellt.

3 „Gefällt mir“

Eine zusätzlich Unterverteilung machen für die PV, wo dann zwei Fronius Symo 10 und 4 eingebunden werden um meine PV Anlage zu erweitern!

1 „Gefällt mir“

Gerade noch mal nachgesehen wie sich unterschiedliche ESP32 Module in meiner FuĂźboden-Heizungsverteilung verhalten => Thema WLan Empfang

Unten ist ja eh der C3 verbaut und bekommt noch die +3db Antenne (nur wegen schlieĂźen der Verteilerdose)
also ist hier von links nach rechts:

  • C3 mit org Antenne
  • C3 mit der +3db Antenne
  • U3 mit der +3db Antenne

im Obergeschoss ist schon fest ein normaler ESP32 (ohne Anschluss fĂĽr eine ext. Antenne)

  • ESP32 (ohne Anschluss fĂĽr eine ext. Antenne)
  • C3 mit der +3db Antenne
  • U3 mit der +3db Antenne

Damit habe ich meinen Favoriten jetzt gefunden => der C3 ist wirklich nett

Umbauen kommt aber jetzt nicht mehr in Frage :grin:

Beim nächsten Projekt werde ich mir das erst einmal ansehen

3 „Gefällt mir“

Hast mal einen Link, wo du die c3 einkaufst? Die scheinen inzwischen nicht mehr wirklich Mehrkosten gegen über den esp8266 zu haben. Für die meisten Sachen reicht ein einfacher 8266er, aber sobald es etwas komplexer wird, wäre der c3 schon eine nette Alternative.

1 „Gefällt mir“

Werbung:

2 „Gefällt mir“

Heute kam mein Shelly EM Gen3 mit zwei Current Transformer :grin:

habe jetzt einfach mal in einem Wandler die Phase 5xFach eingefĂĽhrt (geplant ist aber 10xFach)
der andere ist 1xFach

Mit meiner GlĂĽhfadenlampe 60W

1 „Gefällt mir“

Ja, habe mir das etwas besser vorgestellt :wink:
bei sehr kleiner Last zappelt der Wert mit 7 Fach doch merklich (aber auch der 1 Fach)

kenne ich natĂĽrlich auch vom Gen1 EM,
Wert Stimmt zwar eher an der Realität (7 Fach) aber das bedarf jetzt einer zusätzlichen Glättung

WeiĂź noch nicht, wollte es aber Testen

1 „Gefällt mir“

Was bezweckst du damit? Das verstehe ich nicht?

2 „Gefällt mir“

Kleinere Leistung zuverlässig messen, und auch unter 1Watt :grin:
Spiele noch ein wenig damit, Filter habe ich noch eingerichtet.
War aber nur ein Test, er kommt dann ein BKW

2 „Gefällt mir“