-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b9898a2
Showing
5 changed files
with
119 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
deps | ||
www | ||
*.xml | ||
home-assistant.db | ||
home-assistant_v2.db | ||
home-assistant.log | ||
OZW_Log.txt | ||
*.conf | ||
*.sqlite | ||
mysensors2.json | ||
secrets.yaml | ||
grupos2.yaml | ||
.HA_VERSION | ||
known_devices.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"uuid": "1a3551afe88f4afd8fb90aff9b3a0f06"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
[] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
homeassistant: | ||
# Name of the location where Home Assistant is running | ||
name: Catingham Palace | ||
# Location required to calculate the time the sun rises and sets | ||
latitude: !secret latitude | ||
longitude: !secret longitude | ||
# Impacts weather/sunrise data (altitude above sea level in meters) | ||
elevation: !secret elevation | ||
# metric for Metric, imperial for Imperial | ||
unit_system: metric | ||
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones | ||
time_zone: Europe/Rome | ||
|
||
# Show links to resources in log and frontend | ||
introduction: | ||
|
||
# Enables the frontend | ||
frontend: | ||
|
||
# Enables configuration UI | ||
config: | ||
|
||
http: | ||
# Uncomment this to add a password (recommended!) | ||
api_password: !secret http_api_password | ||
# Uncomment this if you are using SSL or running in Docker etc | ||
# base_url: example.duckdns.org:8123 | ||
ssl_certificate: !secret http_ssl_certificate | ||
ssl_key: !secret http_ssl_key | ||
|
||
# Checks for available updates | ||
# Note: This component will send some information about your system to | ||
# the developers to assist with development of Home Assistant. | ||
# For more information, please see: | ||
# https://home-assistant.io/blog/2016/10/25/explaining-the-updater/ | ||
updater: | ||
|
||
# Discover some devices automatically | ||
discovery: | ||
ignore: | ||
- apple_tv | ||
|
||
# Allows you to issue voice commands from the frontend in enabled browsers | ||
conversation: | ||
|
||
# Enables support for tracking state changes over time. | ||
history: | ||
|
||
# View all events in a logbook | ||
logbook: | ||
|
||
# Track the sun | ||
sun: | ||
|
||
# Weather Prediction | ||
sensor: | ||
platform: yr | ||
|
||
# Text to speech | ||
tts: | ||
platform: google | ||
|
||
mqtt: | ||
broker: !secret mqtt_broker | ||
port: !secret mqtt_port | ||
client_id: lamp1 | ||
username: !secret mqtt_username | ||
password: !secret mqtt_password | ||
|
||
nest: | ||
client_id: !secret nest_client_id | ||
client_secret: !secret nest_client_secret | ||
|
||
switch: | ||
- platform: mqtt | ||
name: "Driveway Gate" | ||
command_topic: "catingham_palace/driveway/gate/state" | ||
state_topic: "catingham_palace/driveway/gate/state" | ||
payload_on: "OPEN" | ||
payload_off: "CLOSED" | ||
qos: 1 | ||
- platform: mqtt | ||
name: "Driveway Door" | ||
command_topic: "catingham_palace/driveway/door/state" | ||
state_topic: "catingham_palace/driveway/door/state" | ||
payload_on: "OPEN" | ||
payload_off: "CLOSED" | ||
qos: 1 | ||
- platform: mqtt | ||
name: "Stair Front door" | ||
command_topic: "catingham_palace/stair/front_door/state" | ||
state_topic: "catingham_palace/stair/front_door/state" | ||
payload_on: "OPEN" | ||
payload_off: "CLOSED" | ||
qos: 1 | ||
- platform: mqtt | ||
name: "Driveway Lights" | ||
command_topic: "catingham_palace/driveway/lights/state" | ||
state_topic: "catingham_palace/driveway/lights/state" | ||
qos: 1 | ||
|
||
group: !include groups.yaml | ||
automation: !include automations.yaml |
Empty file.