Skip to content

Commit ee41b8e

Browse files
[V2.0] #1:Edit all Files for the new Home Assistant Theme Version 2.0
1 parent bff6543 commit ee41b8e

File tree

95 files changed

+7997
-2901
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+7997
-2901
lines changed

README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ _More Screenshot down below._
5858
- Homematic IP 7x [Stellantrieb – motorisch](https://www.homematic-ip.com/produkte/detail/homematic-ip-stellantrieb-motorisch.html) - [Amazon *](https://amzn.to/3p4AVEq)
5959
- Homematic IP 2x [Wandthermostat 240V - 150628A0](https://www.homematic-ip.com/produkte/detail/wandthermostat-mit-schaltausgang-fuer-markenschalter.html) - [Amazon *](https://amzn.to/39lquqC)
6060
- Gardena [Mähroboter smart SILENO city, 250](https://www.gardena.com/de/produkte/rasenpflege/mahroboter/mahroboter-smart-sileno-city-250-m2-set/970450703/) - [Amazon *](https://amzn.to/3fNnVAq)
61+
- BT Dongle - Install: `sudo apt install bluez` and `sudo apt install bluetooth libbluetooth-dev`
62+
63+
## HA House Planning
64+
65+
[HA - Miro Board - House Planning](https://miro.com/app/board/uXjVPz5VLXQ=/?share_link_id=220432519680)
66+
6167

6268
## Hass.io Addons
6369

@@ -84,6 +90,7 @@ _More Screenshot down below._
8490
- [Samsung Smart TV](https://www.home-assistant.io/integrations/samsungtv/)
8591
- [MQTT](https://www.home-assistant.io/integrations/mqtt/)
8692
- [uptimerobot](https://uptimerobot.com/)
93+
- Ledvance over [SmartThings](https://www.home-assistant.io/integrations/smartthings/)
8794

8895
## Custom Components
8996

@@ -93,7 +100,6 @@ _More Screenshot down below._
93100
- SamsungTV Tizen
94101
- Monitor Docker
95102
- browser_mod
96-
- [Custom UI](https://github.com/Mariusthvdb/custom-ui)
97103
- ICS
98104
- Shelly (_Next testing with [ShellyForHass](https://github.com/StyraHem/ShellyForHASS)_)
99105
- [Skoda Connect](https://github.com/lendy007/homeassistant-skodaconnect) - ŠKODA OCTAVIA RS COMBI
@@ -129,8 +135,8 @@ _More Screenshot down below._
129135
- [custom-sidebar](https://github.com/DBuit/sidebar-card) - deactivated
130136

131137
### Google Fonts
132-
- **Headlines:** Comfortaa [Google Fonts](https://fonts.google.com/specimen/Comfortaa)
133-
- **Content:** Raleway [Google Fonts](https://fonts.google.com/specimen/Raleway)
138+
- **Headlines:** ~~Comfortaa [Google Fonts](https://fonts.google.com/specimen/Comfortaa)~~
139+
- **Content:** ~~Raleway [Google Fonts](https://fonts.google.com/specimen/Raleway)~~
134140

135141
## Automations :green_heart:
136142

@@ -213,6 +219,19 @@ Check this install Guide after the "main Install". Dont use the Install part. <b
213219
Use this Guide to Check the migration from Pi to NUC. Dont use the Install part. <br />
214220
[community.home-assistant.io](https://community.home-assistant.io/t/a-successful-migration-from-pi-3-to-intel-nuc/189992)
215221

222+
### Wording Overview
223+
224+
**RAUM_GERÄTBEZEICHNUNG_NUMMER_VALUE**
225+
226+
office_dect301_1_current_power
227+
office_dect301_2_status
228+
229+
**Shelly Example:**
230+
231+
RAUM_FUNKTION_GERÄTBEZEICHNUNG_NUMMER_VALUE
232+
233+
mainhallway_led_shelly1l_84CCA8AD7232
234+
216235
### Portainer CE - Docker Overview
217236

218237
![](https://raw.githubusercontent.com/ingeniumdesign/homeassistant/master/docs/portainer.JPG)

automations/default.yaml

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# # Event is either enter or leave
88
# event: enter # or "leave"
99

10+
1011
- id: notify_hass_startup
1112
alias: "Notify HASS Startup"
1213
description: "Send notification HASS Startup"
@@ -16,7 +17,7 @@
1617
action:
1718
service: notify.ha_message_group
1819
data:
19-
title: "*Info / Warning*"
20+
title: "*Info*"
2021
message: "Home Assistant ist gestartet"
2122

2223
- id: notify_hass_shutdown
@@ -28,23 +29,37 @@
2829
action:
2930
service: notify.ha_message_group
3031
data:
31-
title: "*Info / Warning*"
32+
title: "*Warning*"
3233
message: "Home Assistant ist herunter gefahren"
3334

3435
- id: notify_home_assistant_update
3536
alias: 'Notify Home Assistant Update'
3637
description: "Send notification Home Assistant Update"
3738
trigger:
3839
- platform: state
39-
entity_id: binary_sensor.updater
40-
from: 'off'
41-
to: 'on'
40+
entity_id: sensor.version_check
41+
from: 'False'
42+
to: 'True'
4243
action:
4344
- service: notify.ha_message_group
4445
data:
4546
title: "*Home Assistant Update*"
4647
message: "Es gibt eine neue Home Assistant Version!"
4748

49+
- id: notify_hacs_update
50+
alias: 'Notify HACS Update'
51+
description: "Send notification HACS Update"
52+
trigger:
53+
- platform: state
54+
entity_id: sensor.hacs
55+
from: '0'
56+
to: '1'
57+
action:
58+
- service: notify.ha_message_group
59+
data:
60+
title: "*HACS Update*"
61+
message: "Es gibt ein neues HACS Update!"
62+
4863
- id: notify_sun_rises
4964
alias: "Notify Sun rises"
5065
description: "Send notification when sun rises"

automations/fritzbox.yaml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
- id: ing_fritzbox_rollover
2+
alias: ING-Fritzbox Rollover
3+
description: ''
4+
trigger:
5+
- entity_id: sensor.ing_fritzbox_sent_gb_day
6+
platform: state
7+
condition:
8+
- condition: template
9+
value_template: '{{ not is_state("input_number.ing_fritzbox_sent_day", 0) }}'
10+
- condition: template
11+
value_template: '{{ (trigger.from_state.state | float) < (trigger.to_state.state | float) }}'
12+
action:
13+
- service: input_number.set_value
14+
data_template:
15+
entity_id: input_number.ing_fritzbox_sent_day
16+
value: '{{ states("input_number.ing_fritzbox_sent_day") | int + 1}}'
17+
- service: input_number.set_value
18+
data_template:
19+
entity_id: input_number.ing_fritzbox_sent_month
20+
value: '{{ states("input_number.ing_fritzbox_sent_month") | int + 1 }}'
21+
- service: input_number.set_value
22+
data_template:
23+
entity_id: input_number.ing_fritzbox_sent_year
24+
value: '{{ states("input_number.ing_fritzbox_sent_year") | int + 1 }}'
25+
- service: input_number.set_value
26+
data_template:
27+
entity_id: input_number.ing_fritzbox_received_day
28+
value: '{{ states("input_number.ing_fritzbox_received_day") | int + 1}}'
29+
- service: input_number.set_value
30+
data_template:
31+
entity_id: input_number.ing_fritzbox_received_month
32+
value: '{{ states("input_number.ing_fritzbox_received_month") | int + 1 }}'
33+
- service: input_number.set_value
34+
data_template:
35+
entity_id: input_number.ing_fritzbox_received_year
36+
value: '{{ states("input_number.ing_fritzbox_received_year") | int + 1 }}'
37+
38+
39+
# Clear ING Fritzbox Data
40+
- id: ing_fritzbox_daily_gb_clear
41+
alias: ING-Fritzbox Daily GB Clear
42+
description: ''
43+
trigger:
44+
- at: 00:00:00
45+
platform: time
46+
condition: []
47+
action:
48+
- entity_id: input_number.ing_fritzbox_sent_day
49+
service: input_number.set_value
50+
- entity_id: input_number.ing_fritzbox_received_day
51+
service: input_number.set_value
52+
53+
- id: ing_fritzbox_monthly_gb_clear
54+
alias: ING-Fritzbox Monthly GB Clear
55+
description: ''
56+
trigger:
57+
- at: 00:00:00
58+
platform: time
59+
condition:
60+
- condition: template
61+
value_template: '{{ now().day == 1 }}'
62+
action:
63+
- entity_id: input_number.ing_fritzbox_sent_month
64+
service: input_number.set_value
65+
- entity_id: input_number.ing_fritzbox_received_month
66+
service: input_number.set_value
67+
68+
- id: ing_fritzbox_yearly_gb_clear
69+
alias: ING-Fritzbox Yearly GB Reset
70+
description: ''
71+
trigger:
72+
- at: 00:00:00
73+
platform: time
74+
condition:
75+
- condition: template
76+
value_template: '{{ (utcnow().month == 1) + (utcnow().day == 1) == 2 }}'
77+
action:
78+
- entity_id: input_number.ing_fritzbox_sent_year
79+
service: input_number.set_value
80+
- entity_id: input_number.ing_fritzbox_received_year
81+
service: input_number.set_value

binary_sensor/door.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
- platform: template
2+
sensors:
3+
frontdoortest:
4+
friendly_name: "Haustür TEST"
5+
device_class: presence
6+
value_template: "{{ is_state('input_boolean.frontdoortest', 'on') }}"
7+
8+
#- platform: template
9+
# sensors:
10+
# frontdoortest: # Rename this to choice your binary_sensor name
11+
# friendly_name: "Haustür TEST" #edit this
12+
# value_template: "{{ states('input_boolean.frontdoortest') }}" #edit sensor.your_door_sensor with your sensor door
13+
# attribute_templates:
14+
# door_state: "{{ state_attr('input_boolean.frontdoortest', 'door_state') }}" #edit sensor.your_door_sensor with your sensor door

0 commit comments

Comments
 (0)