-
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 649094f
Showing
7 changed files
with
90 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,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.
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,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.
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,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.
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,8 @@ | ||
- name: New Black | ||
latitude: 52.375672 | ||
longitude: 5.2148813 | ||
radius: 250 | ||
- name: iClicks | ||
latitude: 52.5084895 | ||
longitude: 5.471168 | ||
radius: 250 |