sync
This commit is contained in:
96
consul_backup/homeassistant/configuration.yml
Normal file
96
consul_backup/homeassistant/configuration.yml
Normal file
@@ -0,0 +1,96 @@
|
||||
homeassistant:
|
||||
name: Our_House
|
||||
latitude: 40.7654
|
||||
longitude: -73.8175
|
||||
elevation: 26
|
||||
unit_system: metric
|
||||
time_zone: America/New_York
|
||||
auth_providers:
|
||||
- type: trusted_networks
|
||||
trusted_networks:
|
||||
- 127.0.0.1
|
||||
- ::1
|
||||
- 192.168.1.0/24
|
||||
- 192.168.4.0/22
|
||||
allow_bypass_login: true
|
||||
- type: homeassistant
|
||||
frontend:
|
||||
lovelace:
|
||||
mode: yaml
|
||||
config:
|
||||
zeroconf:
|
||||
http:
|
||||
sun:
|
||||
mobile_app:
|
||||
ecobee:
|
||||
api_key: hstTGuQedckV2an8XDiLSmWA4GlZ1Hy5
|
||||
sensor:
|
||||
- platform: time_date
|
||||
display_options:
|
||||
- 'date_time'
|
||||
automation:
|
||||
- alias: bedroomblindsup
|
||||
trigger:
|
||||
platform: time
|
||||
at: "06:50" #military time
|
||||
action:
|
||||
entity_id: cover.bedroom
|
||||
service: cover.open_cover
|
||||
- alias: bedroomblindsdown
|
||||
trigger:
|
||||
platform: time
|
||||
at: "09:40" #military time
|
||||
action:
|
||||
entity_id: cover.bedroom
|
||||
service: cover.close_cover
|
||||
- alias: harddrives_on
|
||||
trigger:
|
||||
platform: time
|
||||
at: "09:30" #military time
|
||||
action:
|
||||
entity_id: switch.harddrives
|
||||
service: switch.turn_on
|
||||
- alias: harddrives_off
|
||||
trigger:
|
||||
platform: time
|
||||
at: "21:45" #military time
|
||||
action:
|
||||
entity_id: switch.harddrives
|
||||
service: switch.turn_off
|
||||
- alias: LightsAtSunset
|
||||
trigger:
|
||||
platform: sun
|
||||
event: sunset
|
||||
action:
|
||||
service: switch.turn_on
|
||||
entity_id: switch.lampdrawers
|
||||
tplink:
|
||||
discovery: true
|
||||
wemo:
|
||||
static:
|
||||
- 192.168.99.200 # StuBed
|
||||
- 192.168.99.201 # LampDrawers
|
||||
- 192.168.99.202 # BigLamp
|
||||
- 192.168.99.203 # TallTree
|
||||
- 192.168.99.204 # ShortTree
|
||||
- 192.168.99.205 # TallTree
|
||||
- 192.168.99.210 # Harddrives
|
||||
switch:
|
||||
- platform: template
|
||||
switches:
|
||||
living_room_screen_off:
|
||||
friendly_name: 'living_room_screen_off'
|
||||
turn_off:
|
||||
- service: webostv.command
|
||||
data:
|
||||
{
|
||||
"entity_id": "media_player.lg_webos_smart_tv",
|
||||
"command": "com.webos.service.tvpower/power/turnOffScreen"
|
||||
}
|
||||
turn_on:
|
||||
- service: webostv.command
|
||||
data:
|
||||
{
|
||||
"entity_id": "media_player.lg_webos_smart_tv",
|
||||
"command": "com.webos.service.tvpower/power/turnOnScreen"
|
||||
}
|
||||
76
consul_backup/homeassistant/lovelace.yml
Normal file
76
consul_backup/homeassistant/lovelace.yml
Normal file
@@ -0,0 +1,76 @@
|
||||
title: Our_House
|
||||
views:
|
||||
- path: default_view
|
||||
title: Home
|
||||
cards:
|
||||
- type: entities
|
||||
entities:
|
||||
- entity: switch.thinlampstudesk
|
||||
- entity: switch.living_room_screen_off
|
||||
title: Switch
|
||||
- path: servers
|
||||
title: Servers
|
||||
cards:
|
||||
- type: entities
|
||||
entities:
|
||||
- entity: switch.odroid1
|
||||
- entity: switch.odroid2
|
||||
- entity: switch.odroid3
|
||||
- entity: switch.odroid4
|
||||
- entity: switch.odroid5
|
||||
- entity: switch.harddrives
|
||||
title: Servers
|
||||
- path: all
|
||||
title: blinds
|
||||
cards:
|
||||
- type: entities
|
||||
entities:
|
||||
- entity: cover.lounge_farleft
|
||||
- entity: cover.lounge_left
|
||||
- entity: cover.lounge_right
|
||||
- entity: cover.lounge_farright
|
||||
title: Blinds
|
||||
- type: button
|
||||
name: Close Right
|
||||
show_state: false
|
||||
tap_action:
|
||||
action: call-service
|
||||
service: scene.turn_on
|
||||
data:
|
||||
entity_id: scene.close_right
|
||||
- type: button
|
||||
name: Close Left
|
||||
show_state: false
|
||||
tap_action:
|
||||
action: call-service
|
||||
service: scene.turn_on
|
||||
data:
|
||||
entity_id: scene.close_left
|
||||
- type: button
|
||||
name: All Close
|
||||
show_state: false
|
||||
tap_action:
|
||||
action: call-service
|
||||
service: scene.turn_on
|
||||
data:
|
||||
entity_id: scene.all_close
|
||||
- type: button
|
||||
name: All Open
|
||||
show_state: false
|
||||
tap_action:
|
||||
action: call-service
|
||||
service: scene.turn_on
|
||||
data:
|
||||
entity_id: scene.all_open
|
||||
- type: sensor
|
||||
entity: sensor.date_time
|
||||
title: Time
|
||||
- type: entities
|
||||
entities:
|
||||
- automation.bedroomblindsup
|
||||
- automation.lightsatsunset
|
||||
- automation.harddrives_on
|
||||
- automation.harddrives_off
|
||||
title: Automations
|
||||
- type: media-control
|
||||
entity: media_player.lg_webos_smart_tv
|
||||
Reference in New Issue
Block a user