Zum Inhalt springen
Alles Automatisch

Tesla Model Y Juniper 2025: Integration ins Smart Home mit Home Assistant

Erfahre, wie du deinen Tesla Model Y Juniper 2025 nahtlos in dein Smart Home integrierst. Mit Home Assistant und der vehicle-status-card hast du Batteriestand, Reichweite, Reifendruck und Verriegel...

Tesla Model Y Juniper 2025: Integration ins Smart Home mit Home Assistant

Tesla Home Assistant Integration: Statusübersicht im Dashboard

Mit diesem YAML-Snippet kannst du den aktuellen Status deines Tesla Model Y Juniper 2025 direkt in Home Assistant visualisieren. Die Integration ist besonders sinnvoll, wenn du wichtige Fahrzeugdaten wie Batteriestand, Reichweite, Reifendruck oder den Verriegelungsstatus auf einen Blick sehen möchtest. Die Custom Card vehicle-status-card sorgt für eine übersichtliche und anpassbare Darstellung, die sich nahtlos in dein Smart Home Dashboard einfügt.

Das folgende Beispiel zeigt dir eine vollständige Konfiguration, wie du alle relevanten Tesla-Daten in einer Karte zusammenfasst. Du kannst damit nicht nur den Status ablesen, sondern auch direkt Aktionen auslösen, zum Beispiel das Fahrzeug verriegeln oder Details zu einzelnen Sensoren anzeigen.

yaml
1type: custom:vehicle-status-card
2button_card:
3  - button:
4      icon: m3s:shield-locked
5      primary: Vehicle Lock
6      secondary:
7        state_template: "{{ states('') | capitalize }}"
8        entity: 
9    button_type: action
10    hide_button: false
11    button_action:
12      entity: 
13      tap_action:
14        action: more-info
15      hold_action:
16        action: more-info
17      double_tap_action:
18        action: none
19  - button:
20      icon: mdi:battery-high
21      primary: Battery Status
22      secondary:
23        state_template: "{{ states('') }} %"
24        entity: 
25    button_type: action
26    hide_button: false
27    button_action:
28      entity: 
29      tap_action:
30        action: more-info
31      hold_action:
32        action: none
33      double_tap_action:
34        action: none
35  - button:
36      icon: mdi:road-variant
37      primary: Range
38      secondary:
39        state_template: "{{ states('') | int }} km"
40        entity: 
41    button_type: action
42    hide_button: false
43    button_action:
44      entity: 
45      tap_action:
46        action: more-info
47      hold_action:
48        action: none
49      double_tap_action:
50        action: none
51  - button:
52      icon: mdi:speedometer
53      primary: Odometer
54      secondary:
55        state_template: "{{ states('') | int }} km"
56        entity: 
57    button_type: action
58    hide_button: false
59    button_action:
60      entity: 
61      tap_action:
62        action: more-info
63      hold_action:
64        action: none
65      double_tap_action:
66        action: none
67  - button:
68      icon: mdi:car-tire-alert
69      primary: Tire Pressure
70      secondary:
71        state_template: "{{ states('') | float | round(2) }} psi"
72        entity: 
73    tire_card:
74      front_left:
75        entity: 
76        name: Front Left
77      front_right:
78        entity: 
79        name: Front Right
80      rear_left:
81        name: Rear Left
82        entity: 
83      rear_right:
84        name: Rear Right
85        entity: 
86      top: 50
87      horizontal: true
88      background: /api/image/serve//original
89    button_action:
90      entity: ""
91      tap_action:
92        action: more-info
93      hold_action:
94        action: none
95      double_tap_action:
96        action: none
97    card_type: tire
98  - button:
99      icon: mdi:ev-plug-type2
100      primary: Charging Status
101      secondary:
102        state_template: "{{ states('') }}"
103        entity: 
104    button_type: action
105    hide_button: false
106    button_action:
107      entity: 
108      tap_action:
109        action: more-info
110      hold_action:
111        action: none
112      double_tap_action:
113        action: none
114  - button:
115      icon: mdi:thermometer
116      primary: Interior Temperature
117      secondary:
118        state_template: "{{ states('') }} °C"
119        entity: 
120    button_type: action
121    hide_button: false
122    button_action:
123      entity: 
124      tap_action:
125        action: more-info
126      hold_action:
127        action: none
128      double_tap_action:
129        action: none
130  - button:
131      icon: mdi:weather-cloudy
132      primary: Exterior Temperature
133      secondary:
134        state_template: "{{ states('') }} °C"
135        entity: 
136    button_type: action
137    hide_button: false
138    button_action:
139      entity: 
140      tap_action:
141        action: more-info
142      hold_action:
143        action: none
144      double_tap_action:
145        action: none
146layout_config:
147  button_grid:
148    rows: 2
149    columns: 2
150    swipe: true
151  hide:
152    button_notify: false
153    buttons: false
154    images: false
155    indicators: false
156    mini_map: false
157    range_info: false
158    map_address: true
159    card_name: false
160  theme_config:
161    mode: auto
162    theme: default
163  section_order:
164    - header_info
165    - images
166    - mini_map
167    - buttons
168  images_swipe:
169    autoplay: true
170name: Tesla Dashboard
171mini_map:
172  device_tracker:
173range_info:
174  - energy_level:
175      entity: 
176      icon: mdi:battery-80
177    range_level:
178      entity: 
179    progress_color: "#54b2d1"
180    charging_entity:
181indicators:
182  single:
183    - entity: 
184      icon: mdi:lock
185      action_config:
186        tap_action:
187          action: more-info
188    - entity: 
189      icon: mdi:car-door
190      action_config:
191        tap_action:
192          action: more-info
193    - entity: 
194      icon: mdi:ev-plug-type2
195      action_config:
196        tap_action:
197          action: more-info
198images:
199  - url: /api/image/serve//original
200    title: Tesla Image 1
201  - url: /api/image/serve//original
202    title: Tesla Image 2
203  - url: /api/image/serve//original
204    title: Tesla Image 3

Mit dieser Konfiguration kannst du die wichtigsten Fahrzeugdaten zentral überwachen und bekommst direkten Zugriff auf Detailinformationen. Die Karte ist flexibel anpassbar und unterstützt verschiedene Ansichten, wie zum Beispiel eine Übersicht der Reifendrücke oder eine Mini-Map mit dem aktuellen Standort.

Beachte, dass du die Platzhalter wie <lock_entity> oder <battery_sensor> durch die tatsächlichen Entity-IDs aus deiner Home Assistant Tesla-Integration ersetzen musst. Dies sorgt dafür, dass die Daten korrekt angezeigt werden.

So richtest du die Integration ein

  • Ersetze alle Platzhalter im YAML durch deine echten Entity-IDs. Installiere die notwendigen Integrationen:

    yaml
    - [Tesla Home Assistant Integration](https://www.home-assistant.io/integrations/tesla/)
    - [vehicle-status-card](https://github.com/ngocjohn/vehicle-status-card) (über HACS)
    • Füge das YAML in dein Dashboard (z. B. dashboard.yaml) ein.
    • Lade die Lovelace-Oberfläche neu, damit die Änderungen übernommen werden.

Weitere Ressourcen

Mit dieser Lösung hast du deinen Tesla Model Y Juniper 2025 optimal in dein Smart Home eingebunden und kannst alle wichtigen Fahrzeugdaten komfortabel in Home Assistant überwachen.

Verwendete Erweiterungen & Repositories

Im Video zu „Tesla Model Y Juniper 2025 – Integriere deinen Tesla in dein Smart Home mit Home Assistant“ wird erklärt, wie das Thema technisch umgesetzt wird.

Snippet teilen