Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 7.89 KB | None | 0 0
  1.  
  2. homeassistant:
  3. ############################################################
  4. ####Name of the location where Home Assistant is running####
  5. ############################################################
  6.  
  7.   name: J.A.R.V.I.S
  8.  
  9. ################  
  10. ####Location####
  11. ################
  12.  
  13.   latitude: 42.9968880
  14.   longitude: -85.9906370
  15.   # Impacts weather/sunrise data (altitude above sea level in meters)
  16.   elevation: 659
  17.     ##metric for Metric, imperial for Imperial##
  18.   unit_system: imperial
  19.   time_zone: EST
  20.  
  21. ###########################
  22. #####Customization file####
  23. ###########################
  24.  
  25. customize:
  26.  
  27. ####################################################
  28. #####Show links to resources in log and frontend####
  29. ####################################################
  30.  
  31. #introduction:
  32.  
  33. ############################
  34. ####Enables the frontend####
  35. ############################
  36.  
  37. frontend:
  38. ##############
  39. ####Themes####
  40. ##############
  41.  
  42. #themes:
  43.  
  44. ################################
  45. ####Enables configuration UI####
  46. ################################
  47.  
  48. config:
  49. ###############################################################
  50. ###Uncomment this if you are using SSL/TLS, running in Docker## ###container, etc.#############################################
  51. ###############################################################
  52.  
  53. # http:
  54.  
  55. ####################################
  56. ####Checks for available updates####
  57. ####################################
  58.  
  59. # Note: This component will send some information about your system to
  60. # the developers to assist with development of Home Assistant.
  61. # For more information, please see:
  62. # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
  63. updater:
  64.  #Optional, allows Home Assistant developers to focus on popular components.
  65.     include_used_components: true
  66.  
  67. ############################################
  68. #####Discover some devices automatically####
  69. ############################################
  70.  
  71. discovery:
  72.   ignore:
  73.    - sonos
  74.   enable:
  75.    - homekit
  76. #    - plex_mediaserver
  77. #    - google_cast
  78.     - dlna_dmr
  79.  
  80. ##############################################################
  81. ####Allows you to issue voice commands from the frontend in### #enabled browsers#############################################
  82. ##############################################################
  83.  
  84. conversation:
  85. ############################################################
  86. ####Enables support for tracking state changes over time####
  87. ############################################################
  88.  
  89. history:
  90. ####################################
  91. ####View all events in a logbook####
  92. ####################################
  93.  
  94. logbook:
  95. ##############
  96. ####Google####
  97. ##############
  98.  
  99. google:
  100.   client_id: #####
  101.  
  102. #############################################################
  103. ####Enables a map showing the location of tracked devices####
  104. #############################################################
  105.  
  106. map:
  107. ######################
  108. ####Device Tracker####
  109. ######################
  110.  
  111. device_tracker:
  112.   - platform: google_maps
  113.     username: #####
  114.     password: #####
  115.   - platform: nmap_tracker
  116.     hosts: #####
  117.     home_interval: 6000
  118.  
  119. ##############
  120. ####Notify####
  121. ##############
  122.  
  123. notify:
  124.   - name: NOTIFIER_NAME
  125.     platform: pushbullet
  126.     api_key: #####
  127.  
  128. #####################
  129. ####Track the Sun####
  130. #####################
  131.  
  132. sun:
  133. ###############
  134. ####Sensors####
  135. ###############
  136.  
  137. sensor:
  138.   - platform: time_date
  139.     name: current_time
  140.     display_options:
  141.      - 'time'
  142.   - platform: systemmonitor
  143.     name: system_monitor
  144.     resources:
  145.       - type: disk_free
  146.         arg: /
  147.       - type: memory_use_percent
  148.       - type: processor_use
  149.   - platform: google_travel_time
  150.     api_key: #####
  151.     origin: device_tracker.Ironmans_phone
  152.     destination: zone.home
  153.     options:
  154.       units: imperial
  155.   - platform: skybell
  156.     monitored_conditions:
  157.      - chime_level
  158.  
  159. ######################
  160. ####Text to speech####
  161. ######################
  162.  
  163. tts:
  164.   - platform: google
  165.  
  166. #############
  167. ####Cloud####
  168. #############
  169.  
  170. cloud:
  171. ############
  172. ####MQTT####
  173. ############
  174.  
  175. mqtt:
  176.   password: #####
  177.   broker: #####
  178.  
  179. ##############
  180. ####Logger####
  181. ##############
  182.  
  183. logger:
  184.   default: warning
  185.   logs:
  186.     homeassistant.components.skybell: debug
  187.  
  188. #############
  189. ####Lists####
  190. #############
  191.  
  192. shopping_list:
  193. ###############
  194. ####Weather####
  195. ###############
  196.  
  197. weather:
  198.   - platform: darksky
  199.     name: Weather_@_Hideout
  200.     api_key: #####
  201.     monitored_conditions:
  202.       - temperature: sensor.dark_sky_temperature
  203.       - humidity: sensor.dark_sky_humidity
  204.       - precip_type
  205.       - precip_probability: sensor.dark_sky_precip_probability
  206.       - precip_intensity: sensor.dark_sky_precip_intensity
  207.       - precip_accumulation: sensor.dark_sky_precip_accumulation
  208.       - precip_intensity_max: sensor.dark_sky_precip_intensity_max
  209.       - wind_speedwind_speed: sensor.dark_sky_wind_speed
  210.       - wind_gustwind_speed: sensor.dark_sky_wind_gust
  211.       - wind_bearing: sensor.dark_sky_wind_bearing
  212.       - cloud_cover
  213.       - pressure
  214.       - visibility
  215.       - apparant_temperature: sensor.dark_sky_apparent_temperature
  216.       - apparent_temperature_high: sensor.dark_sky_apparent_temperature_high
  217.       - apparent_temperature_low: sensor.dark_sky_apparent_temperature_low
  218.       - minutely_summary
  219.       - hourly_summary
  220.       - daily_summary
  221.       - moon_phase
  222.       - icon: sensor.dark_sky_icon
  223.       - forecast_temperature_min: sensor.dark_sky_daily_low_temperature_1
  224.       - forecast_temperature_max: sensor.dark_sky_daily_high_temperature_1
  225.       - forecast_precip_probability: sensor.dark_sky_precip_probability_1
  226.       - forecast_precip_type: sensor.dark_sky_precip_1
  227.  
  228. ##############
  229. ####Inputs####
  230. ##############
  231.  
  232. input_datetime:
  233.   only_time:
  234.     name: Sched
  235.     has_date: false
  236.     has_time: true
  237.     initial: 06:00
  238.  
  239. ###############
  240. ####Skybell####
  241. ###############
  242.  
  243. skybell:
  244.   username: #####
  245.   password: #####
  246.  
  247. ####################
  248. ####Media Player####
  249. ####################
  250.  
  251. media_player:
  252.   - platform: plex
  253.     entity_namespace: 'plex'
  254.     include_non_clients: true
  255.     scan_interval: 5
  256.     show_all_controls: false
  257.     use_custom_entity_ids: true
  258.     use_episode_art: true
  259.     remove_unavailable_clients: true
  260.     client_remove_interval: 600
  261.  
  262. ###############
  263. ####Cameras####
  264. ###############
  265.  
  266. camera:
  267.   - platform: generic
  268.     name: radar
  269.     still_image_url: 'https://radblast.wunderground.com/cgi-bin/radar/WUNIDS_map?station=GRR&brand=wui&num=1&delay=5&type=N0R&frame=3&scale=0.4&noclutter=0&showstorms=0&mapx=400&mapy=240&centerx=420&centery=255&transx=20&transy=15&showlabels=1&severe=0&rainsnow=0&lightning=0&smooth=0&rand=25692162&lat=0&lon=0&label=you'
  270.   - platform: skybell
  271. #  - platform: rpi_camera
  272.  
  273. ##############
  274. ####Lights####
  275. ##############
  276.  
  277. light:
  278.   - platform: skybell
  279.  
  280. ################
  281. ####Switches####
  282. ################
  283.  
  284. switch:
  285.   - platform: rpi_gpio
  286.     ports:
  287.       5: Outside Lights
  288.       6: Hall Lights
  289.       26: Livingroom Lights
  290.       13: Water Heater
  291.       12: Spare12
  292.       24: Spare24
  293.     invert_logic: true
  294.   - platform: skybell
  295.     monitored_conditions:
  296.      - do_not_disturb
  297.       - motion_sensor
  298.  
  299. #####################
  300. ####Biary Sensors####
  301. #####################
  302.  
  303. binary_sensor:
  304.   - platform: skybell
  305.     monitored_conditions:
  306.      - button
  307.       - motion
  308.  
  309. ##################
  310. ####Automation####
  311. ##################
  312.  
  313. automation:
  314.   - alias: 'Send notification when sun rises'
  315.     trigger:
  316.       platform: sun
  317.       event: sunrise
  318.       offset: '+00:00:00'
  319.     action:
  320.       service: notify.pushbullet
  321.       data:
  322.         message: 'The sun is up.'
  323.   - alias: 'Send notification when sun sets'
  324.     trigger:
  325.       platform: sun
  326.       event: sunset
  327.       offset: '+00:00:00'
  328.     action:
  329.       service: notify.pushbullet
  330.       data:
  331.         message: 'The sun is down.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement