Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
conorsham committed Nov 23, 2019
0 parents commit 649094f
Show file tree
Hide file tree
Showing 7 changed files with 90 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Example .gitignore file for your config dir.
# A * ensures that everything will be ignored.
*

# You can whitelist files/folders with !, these will not be ignored.
!*.yaml
!.gitignore
!*.md

# Ignore folders.
.storage
.cloud
.google.token

# Ensure these YAML files are ignored, otherwise your secret data/credentials will leak.
ip_bans.yaml
secrets.yaml
known_devices.yaml
Empty file added automations.yaml
Empty file.
34 changes: 34 additions & 0 deletions configuration.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@

# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:

# Uncomment this if you are using SSL/TLS, running in Docker container, etc.
# http:
# base_url: example.duckdns.org:8123

# Text to speech
tts:
- platform: google_translate
language: 'nl'
cache: true
cache_dir: /tmp/tts
time_memory: 300

## group: !include groups.yaml
frontend:
themes: !include_dir_merge_named themes/
zone: !include zone.yaml
automation: !include_dir_merge_list automations/
script: !include_dir_named scripts/
zwave:
usb_path: /dev/ttyACM0
# Example configuration.yaml entry
media_player:
- platform: samsungtv
host: 192.168.178.23

tado:
username: !secret tado_username
password: !secret tado_password

input_select: !include configuration/input_select.yaml
Empty file added groups.yaml
Empty file.
30 changes: 30 additions & 0 deletions scenes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
- id: '1574539588856'
name: Studeerkamer - Work mode
entities:
light.color_temperature_light_1:
brightness: 254
color_temp: 267
state: 'on'
light.color_temperature_light_2:
brightness: 254
color_temp: 267
state: 'on'
light.color_temperature_light_3:
brightness: 254
color_temp: 267
state: 'on'
- id: '1574539631494'
name: Studeerkamer - Work mode
entities:
light.color_temperature_light_1:
brightness: 254
color_temp: 267
state: 'on'
light.color_temperature_light_2:
brightness: 254
color_temp: 267
state: 'on'
light.color_temperature_light_3:
brightness: 254
color_temp: 267
state: 'on'
Empty file added scripts.yaml
Empty file.
8 changes: 8 additions & 0 deletions zone.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
- name: New Black
latitude: 52.375672
longitude: 5.2148813
radius: 250
- name: iClicks
latitude: 52.5084895
longitude: 5.471168
radius: 250

0 comments on commit 649094f

Please sign in to comment.