commit 358137bb4012aa57830f51705a31345bb15e90ba Author: Claus Dethlefsen Date: Wed Jan 12 07:26:26 2022 +0100 initial commit diff --git a/.HA_VERSION b/.HA_VERSION new file mode 100644 index 0000000..fcfc2cb --- /dev/null +++ b/.HA_VERSION @@ -0,0 +1 @@ +2021.12.8 \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100755 index 0000000..f387c54 --- /dev/null +++ b/.gitignore @@ -0,0 +1,53 @@ +# Example .gitignore file for your config dir. +# An * ensures that everything will be ignored. +* + +# You can whitelist files/folders with !, these will not be ignored. +!*.yaml +!.gitignore +!*.md +!.travis.yml +!fake_privkey.pem +!fake_fullchain.pem +!.HA_VERSION +!customize +!www/* +#!www/mini-media-player-bundle.js +#!www/atomic_calendar.js +!custom_components/* +#!custom_components/hpprinter +#!custom_components/lovelace_gen/__init__.py +#!custom_components/lovelace_gen/__pycache__ +#!custom_components/lovelace_gen/manifest.json +!include/*.yaml +!include/automations/*.yaml +!include/binary_sensors/*.yaml +!include/groups/*.yaml +!include/input/*.yaml +!include/input/select/*.yaml +!include/input/datetime/*.yaml +!include/input/number/*.yaml +!include/lights/*.yaml +!include/panels/*.yaml +!include/resources/*.yaml +!include/scripts/*.yaml +!include/sensors/*.yaml +!include/shell_commands/*.yaml +!include/switches/*.yaml +!themes/* +!python_scripts/* +!view/*.yaml +!view/cards/*.yaml + +# 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 +configuration_full.yaml +configuration_minimal.yaml +.Rproj.user diff --git a/automations.yaml b/automations.yaml new file mode 100644 index 0000000..0637a08 --- /dev/null +++ b/automations.yaml @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/configuration.yaml b/configuration.yaml new file mode 100644 index 0000000..1828512 --- /dev/null +++ b/configuration.yaml @@ -0,0 +1,12 @@ + +# Configure a default setup of Home Assistant (frontend, api, etc) +default_config: + +# Text to speech +tts: + - platform: google_translate + +group: !include groups.yaml +automation: !include automations.yaml +script: !include scripts.yaml +scene: !include scenes.yaml diff --git a/groups.yaml b/groups.yaml new file mode 100644 index 0000000..e69de29 diff --git a/scenes.yaml b/scenes.yaml new file mode 100644 index 0000000..e69de29 diff --git a/scripts.yaml b/scripts.yaml new file mode 100644 index 0000000..e69de29