Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rpanfili committed May 29, 2017
0 parents commit b9898a2
Show file tree
Hide file tree
Showing 5 changed files with 119 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .gitignore
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
1 change: 1 addition & 0 deletions .uuid
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"uuid": "1a3551afe88f4afd8fb90aff9b3a0f06"}
1 change: 1 addition & 0 deletions automations.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[]
103 changes: 103 additions & 0 deletions configuration.yaml
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 added groups.yaml
Empty file.

0 comments on commit b9898a2

Please sign in to comment.