39 lines
842 B
YAML
39 lines
842 B
YAML
homeassistant:
|
|
packages: !include_dir_named packages/
|
|
|
|
# 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
|
|
#sensor: !include sensors.yaml
|
|
#switch: !include switches.yaml
|
|
#influxdb: !include influxdb.yaml
|
|
template: !include templates.yaml
|
|
|
|
# Move to a package
|
|
input_number:
|
|
humidify_dew_point:
|
|
name: "Humidify Dew Point"
|
|
initial: 50
|
|
min: 30
|
|
max: 55
|
|
step: 0.5
|
|
unit_of_measurement: "°F"
|
|
icon: "mdi:temperature-fahrenheit"
|
|
|
|
# Example configuration.yaml entry for the HTTP component
|
|
http:
|
|
server_port: 443
|
|
ssl_certificate: /ssl/fullchain.pem
|
|
ssl_key: /ssl/privkey.pem
|
|
|
|
mqtt: !include sensors.yaml
|
|
|