Added mqtt slave, new lamps
This commit is contained in:
parent
b203634c85
commit
e81a4f0b9d
@ -7,6 +7,7 @@
|
|||||||
include_entities:
|
include_entities:
|
||||||
- light.ambilight
|
- light.ambilight
|
||||||
- light.kuchen_theke
|
- light.kuchen_theke
|
||||||
|
- light.esstisch
|
||||||
- switch.livingroom_stimmungslicht
|
- switch.livingroom_stimmungslicht
|
||||||
- switch.livingroom_music
|
- switch.livingroom_music
|
||||||
- switch.livingroom_netflix
|
- switch.livingroom_netflix
|
||||||
@ -29,6 +30,9 @@
|
|||||||
light.kuchen_theke:
|
light.kuchen_theke:
|
||||||
name: Theke
|
name: Theke
|
||||||
description: Küche - Theken-Lichter
|
description: Küche - Theken-Lichter
|
||||||
|
light.esstisch:
|
||||||
|
name: Esstisch
|
||||||
|
description: Küche - Esstisch-Lampen
|
||||||
light.stimmungslicht:
|
light.stimmungslicht:
|
||||||
name: Stimmungslicht
|
name: Stimmungslicht
|
||||||
description: Wohnzimmer - Stimmungslicht
|
description: Wohnzimmer - Stimmungslicht
|
||||||
|
@ -9,6 +9,8 @@ homeassistant:
|
|||||||
whitelist_external_dirs:
|
whitelist_external_dirs:
|
||||||
- /backuplogs
|
- /backuplogs
|
||||||
|
|
||||||
|
frontend:
|
||||||
|
|
||||||
http:
|
http:
|
||||||
ip_ban_enabled: true
|
ip_ban_enabled: true
|
||||||
login_attempts_threshold: 5
|
login_attempts_threshold: 5
|
||||||
@ -34,19 +36,26 @@ config:
|
|||||||
|
|
||||||
updater:
|
updater:
|
||||||
|
|
||||||
map:
|
|
||||||
|
|
||||||
#discovery:
|
#discovery:
|
||||||
|
|
||||||
|
conversation:
|
||||||
|
|
||||||
|
tts:
|
||||||
|
- platform: google
|
||||||
|
|
||||||
history:
|
history:
|
||||||
|
|
||||||
logbook:
|
logbook:
|
||||||
|
|
||||||
|
map:
|
||||||
|
|
||||||
recorder:
|
recorder:
|
||||||
|
|
||||||
influxdb:
|
influxdb:
|
||||||
host: !secret influxdb
|
host: !secret influxdb
|
||||||
database: home_assistant
|
database: home_assistant
|
||||||
|
username: !secret influxdb_user
|
||||||
|
password: !secret influxdb_password
|
||||||
max_retries: 3
|
max_retries: 3
|
||||||
include:
|
include:
|
||||||
entities:
|
entities:
|
||||||
@ -54,12 +63,9 @@ influxdb:
|
|||||||
- sensor.attic_heatIndex
|
- sensor.attic_heatIndex
|
||||||
- sensor.attic_humidity
|
- sensor.attic_humidity
|
||||||
- sensor.attic_temperature
|
- sensor.attic_temperature
|
||||||
# - sensor.bathroom_hygrometer_battery
|
- sensor.bathroom_hygrometer_battery
|
||||||
# - sensor.bathroom_hygrometer_humidity
|
- sensor.bathroom_hygrometer_humidity
|
||||||
# - sensor.bathroom_hygrometer_temperature
|
- sensor.bathroom_hygrometer_temperature
|
||||||
# - sensor.livingroom_heatindex
|
|
||||||
# - sensor.livingroom_humidity
|
|
||||||
# - sensor.livingroom_temperature
|
|
||||||
# Youtube
|
# Youtube
|
||||||
- sensor.youtube_beauty
|
- sensor.youtube_beauty
|
||||||
- sensor.youtube_beauty_videos
|
- sensor.youtube_beauty_videos
|
||||||
@ -68,6 +74,9 @@ influxdb:
|
|||||||
- sensor.youtube_mtb_videos
|
- sensor.youtube_mtb_videos
|
||||||
- sensor.youtube_mtb_views
|
- sensor.youtube_mtb_views
|
||||||
# Bitly
|
# Bitly
|
||||||
|
- sensor.bitly_blog_bb
|
||||||
|
- sensor.bitly_instagram_bb
|
||||||
|
- sensor.bitly_impressum_bb
|
||||||
- sensor.bitly_youtube_bb
|
- sensor.bitly_youtube_bb
|
||||||
# Instagram
|
# Instagram
|
||||||
- sensor.instagram_beauty
|
- sensor.instagram_beauty
|
||||||
@ -97,6 +106,13 @@ mqtt:
|
|||||||
username: !secret mqtt_username
|
username: !secret mqtt_username
|
||||||
password: !secret mqtt_password
|
password: !secret mqtt_password
|
||||||
|
|
||||||
|
mqtt_eventstream:
|
||||||
|
publish_topic: homeassistant/master
|
||||||
|
subscribe_topic: homeassistant-slaves/#
|
||||||
|
ignore_event:
|
||||||
|
- call_service
|
||||||
|
- state_changed
|
||||||
|
|
||||||
telegram_bot:
|
telegram_bot:
|
||||||
- platform: broadcast
|
- platform: broadcast
|
||||||
api_key: !secret telegram_bot
|
api_key: !secret telegram_bot
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
icon: mdi:water-percent
|
icon: mdi:water-percent
|
||||||
path: humidity
|
path: humidity
|
||||||
cards:
|
cards:
|
||||||
|
- type: history-graph
|
||||||
|
title: 'Badezimmer'
|
||||||
|
refresh_interval: 30
|
||||||
|
entities:
|
||||||
|
- entity: sensor.bathroom_hygrometer_temperature
|
||||||
|
name: Temperatur
|
||||||
|
- entity: sensor.bathroom_hygrometer_humidity
|
||||||
|
name: Luftfeuchtigkeit
|
||||||
- type: history-graph
|
- type: history-graph
|
||||||
title: 'Dachboden'
|
title: 'Dachboden'
|
||||||
refresh_interval: 30
|
refresh_interval: 30
|
||||||
|
@ -2,6 +2,9 @@ title: Küche
|
|||||||
path: kitchen
|
path: kitchen
|
||||||
cards:
|
cards:
|
||||||
# Lights
|
# Lights
|
||||||
- type: light
|
- type: entities
|
||||||
entity: light.kuchen_theke
|
entities:
|
||||||
|
- entity: light.kuchen_theke
|
||||||
name: Küchen-Theke
|
name: Küchen-Theke
|
||||||
|
- entity: light.esstisch
|
||||||
|
name: Esstisch
|
@ -8,6 +8,8 @@ cards:
|
|||||||
entities:
|
entities:
|
||||||
- entity: light.kuchen_theke
|
- entity: light.kuchen_theke
|
||||||
name: Küchen-Theke
|
name: Küchen-Theke
|
||||||
|
- entity: light.esstisch
|
||||||
|
name: Esstisch
|
||||||
- entity: light.stimmungslicht
|
- entity: light.stimmungslicht
|
||||||
name: Stimmungslicht
|
name: Stimmungslicht
|
||||||
icon: mdi:lightbulb
|
icon: mdi:lightbulb
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
#- platform: mitemp_bt
|
|
||||||
# name: Bathroom Hygrometer
|
|
||||||
# mac: "4C:65:A8:DC:4D:B2"
|
|
||||||
# monitored_conditions:
|
|
||||||
# - temperature
|
|
||||||
# - humidity
|
|
||||||
# - battery
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
- platform: time_date
|
- platform: time_date
|
||||||
display_options:
|
display_options:
|
||||||
- 'time'
|
- 'time'
|
||||||
- 'date'
|
- 'date'
|
||||||
@ -7,12 +7,12 @@
|
|||||||
- 'time_utc'
|
- 'time_utc'
|
||||||
- 'beat'
|
- 'beat'
|
||||||
|
|
||||||
- platform: dnsip
|
- platform: dnsip
|
||||||
|
|
||||||
- platform: deutsche_bahn
|
- platform: deutsche_bahn
|
||||||
from: "Salzbergen"
|
from: "Salzbergen"
|
||||||
to: "Münster HBF"
|
to: "Münster HBF"
|
||||||
- platform: template
|
- platform: template
|
||||||
sensors:
|
sensors:
|
||||||
salzbergen_to_munster_hbf_ontime:
|
salzbergen_to_munster_hbf_ontime:
|
||||||
value_template: '{{ states.sensor.salzbergen_to_munster_hbf.attributes.ontime }}'
|
value_template: '{{ states.sensor.salzbergen_to_munster_hbf.attributes.ontime }}'
|
@ -42,11 +42,32 @@
|
|||||||
force_update: true
|
force_update: true
|
||||||
|
|
||||||
# Bit.ly
|
# Bit.ly
|
||||||
|
# http://bit.ly/blog-jbb
|
||||||
|
- platform: rest
|
||||||
|
scan_interval: 300
|
||||||
|
name: bitly_blog_bb
|
||||||
|
resource: !secret bitly_blog_bb
|
||||||
|
value_template: '{{ value_json.data.link_clicks }}'
|
||||||
|
force_update: true
|
||||||
|
# http://bit.ly/insta-jbb
|
||||||
|
- platform: rest
|
||||||
|
scan_interval: 300
|
||||||
|
name: bitly_instagram_bb
|
||||||
|
resource: !secret bitly_instagram_bb
|
||||||
|
value_template: '{{ value_json.data.link_clicks }}'
|
||||||
|
force_update: true
|
||||||
|
#http://bit.ly/impressum-jbb
|
||||||
|
- platform: rest
|
||||||
|
scan_interval: 300
|
||||||
|
name: bitly_impressum_bb
|
||||||
|
resource: !secret bitly_impressum_bb
|
||||||
|
value_template: '{{ value_json.data.link_clicks }}'
|
||||||
|
force_update: true
|
||||||
# http://bit.ly/youtube-bb
|
# http://bit.ly/youtube-bb
|
||||||
- platform: rest
|
- platform: rest
|
||||||
scan_interval: 300
|
scan_interval: 300
|
||||||
name: bitly_youtube-bb
|
name: bitly_youtube_bb
|
||||||
resource: !secret bitly_youtube-bb
|
resource: !secret bitly_youtube_bb
|
||||||
value_template: '{{ value_json.data.link_clicks }}'
|
value_template: '{{ value_json.data.link_clicks }}'
|
||||||
force_update: true
|
force_update: true
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user