Advertisement
Guest User

Untitled

a guest
Mar 15th, 2021
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1.  
  2. # Configure a default setup of Home Assistant (frontend, api, etc)
  3. default_config:
  4.  
  5. # Text to speech
  6. tts:
  7. - platform: google_translate
  8.  
  9. group: !include groups.yaml
  10. automation: !include automations.yaml
  11. script: !include scripts.yaml
  12. scene: !include scenes.yaml
  13.  
  14. # Maria DB
  15. recorder:
  16. db_url: !secret mariadb
  17.  
  18. # System Monitoring
  19. sensor:
  20. - platform: systemmonitor
  21. resources:
  22. - type: processor_use
  23. - type: processor_temperature
  24. - type: memory_free
  25. - type: disk_use_percent
  26. arg: /
  27. - type: disk_use
  28. - type: disk_free
  29.  
  30. # Google Calendar
  31. google:
  32. client_id: !secret googlecalendarclientid
  33. client_secret: !secret googlecalendarclientsecret
  34.  
  35.  
  36. climate:
  37. - platform: generic_thermostat
  38. name: Meredith's Fan
  39. heater: switch.merediths_fan
  40. target_sensor: sensor.meredith_s_bedroom_temp
  41. min_temp: 50
  42. max_temp: 77
  43. ac_mode: true
  44. target_temp: 70
  45. cold_tolerance: 0.3
  46. hot_tolerance: 0
  47. min_cycle_duration:
  48. seconds: 5
  49. keep_alive:
  50. minutes: 3
  51. initial_hvac_mode: "off"
  52. precision: 0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement