Advertisement
pavukfly

Untitled

Apr 7th, 2020
506
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.58 KB | None | 0 0
  1. # default_config:
  2. config:
  3. system_health:
  4. updater:
  5. zeroconf:
  6. ssdp:
  7. history:
  8.  exclude:
  9.     domains:
  10.      - sun
  11.     entities:
  12.      - sensor.last_boot
  13.       - sensor.date
  14.       - sensor.bssid
  15.       - sensor.floors_ascended
  16.       - sensor.floors_descended
  17.       - sensor.steps
  18.       - timer.movement
  19.  
  20. mobile_app:
  21. logger:
  22.    default: error
  23. frontend:
  24.   themes: !include_dir_merge_named themes
  25. discovery:
  26. group: !include groups.yaml
  27. automation: !include automations.yaml
  28. script: !include scripts.yaml
  29. sensor: !include sensors.yaml
  30. timer: !include includes/timer.yaml
  31. climate: !include includes/climate.yaml
  32.  
  33. http:
  34.    base_url: https://ha.pavuk.su:8123
  35.    ssl_certificate: /ssl/fullchain.pem
  36.    ssl_key: /ssl/privkey.pem
  37.  
  38. asuswrt:
  39.     host: 192.168.1.1
  40.     username: !secret mirouter_username
  41.     password: !secret mirouter_password
  42.  
  43. hacs:
  44.   token: !secret hacks_token
  45.  
  46. lovelace:
  47.   mode: yaml
  48.   resources:
  49.   - url: /hacsfiles/custom-header/custom-header.js
  50.     type: module
  51.   - url: /hacsfiles/mini-graph-card/mini-graph-card-bundle.js
  52.     type: module
  53.   - url: /hacsfiles/rgb-light-card/card.js
  54.     type: module
  55.   - url: /hacsfiles/lovelace-slider-entity-row/slider-entity-row.js
  56.     type: module
  57.  
  58. telegram_bot:
  59.   - platform: polling
  60.     proxy_url: socks5://198.199.127.86:1080
  61.     proxy_params:
  62.       username: !secret sock5_username
  63.       password: !secret sock5_password
  64.       timeout:
  65.     api_key: !secret telegram_api
  66.     allowed_chat_ids:
  67.      - 288426124
  68.       - 518275375
  69. notify:
  70.   - name: Pavuk_HomeAssistant
  71.     platform: telegram
  72.     chat_id: 288426124
  73.   - name: Natasha_HomeAssistant
  74.     platform: telegram
  75.     chat_id: 518275375
  76.  
  77. mqtt:
  78.   discovery: true
  79.   broker: 192.168.1.77
  80.   username: !secret mqtt_username
  81.   password: !secret mqtt_password
  82.   client_id: home-assistant
  83.   birth_message:
  84.     topic: 'hass/status'
  85.     payload: 'online'
  86.   will_message:
  87.     topic: 'hass/status'
  88.     payload: 'offline'
  89.  
  90. binary_sensor:
  91.   - platform: workday
  92.     country: RU
  93.  
  94. utility_meter:
  95.   energy:
  96.     source: sensor.relay_power
  97.     cycle: monthly
  98.  
  99. homekit:
  100.   autostart: true
  101.   filter:
  102.     include_domains:
  103.      - sensor
  104.       - script
  105.       - light
  106.       - switch
  107.       - climate
  108.       - binary_sensor
  109.     exclude_entities:
  110.      - device_tracker.iphone_igor
  111.       - binary_sensor.updater
  112.       - binary_sensor.workday_sensor
  113.       - person.pi
  114.       - switch.adguard_protection
  115.       - switch.adguard_filtering
  116.       - switch.adguard_parental_control
  117.       - switch.adguard_safe_browsing
  118.       - switch.adguard_safe_search
  119.  
  120. yandex_smart_home:
  121.   filter:
  122.     include_domains:
  123.      - sensor
  124.       - script
  125.       - light
  126.       - switch
  127.       - binary_sensor
  128.     exclude_entities:
  129.      - device_tracker.iphone_igor
  130.       - binary_sensor.updater
  131.       - binary_sensor.workday_sensor
  132.       - person.pi
  133.       - switch.adguard_protection
  134.       - switch.adguard_filtering
  135.       - switch.adguard_parental_control
  136.       - switch.adguard_safe_browsing
  137.       - switch.adguard_safe_search
  138.       - script.lamp_minus
  139.       - script.lamp_plus
  140.      
  141. plant:
  142.   ficus:
  143.     sensors:
  144.       moisture: sensor.flower_moisture
  145.       temperature: sensor.flower_temperature
  146.       conductivity: sensor.flower_conductivity
  147.       brightness: sensor.flower_light_intensity
  148.       battery: sensor.flower_battery
  149.     min_moisture: 15
  150.     max_moisture: 60
  151.     min_conductivity: 350
  152.     max_conductivity: 2000
  153.     min_temperature: 10
  154.     max_temperature: 35
  155.     min_brightness: 1000
  156.     max_brightness: 30000
  157.     min_battery: 30
  158.     check_days: 3
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement