Advertisement
Guest User

Untitled

a guest
Jan 29th, 2017
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.91 KB | None | 0 0
  1. homeassistant@Domo:~$ whoami
  2. homeassistant
  3. homeassistant@Domo:~$ echo $PATH
  4. /home/homeassistant/bin:/home/homeassistant/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin
  5. homeassistant@Domo:~$ which ssh
  6. /usr/bin/ssh
  7. homeassistant@Domo:~$ which arp
  8. /usr/sbin/arp
  9. homeassistant@Domo:~$ /srv/homeassistant/bin/hass --script check_config
  10. Testing configuration at /home/homeassistant/.homeassistant
  11. homeassistant@Domo:~$ ls
  12. homeassistant@Domo:~$ cat /home/homeassistant/.homeassistant/configuration.yaml
  13. homeassistant:
  14. # Name of the location where Home Assistant is running
  15.   name: Home
  16.   # Location required to calculate the time the sun rises and sets
  17.   latitude: 45.4717
  18.   longitude: -73.6149
  19.   # Impacts weather/sunrise data (altitude above sea level in meters)
  20.   elevation: 62
  21.   # metric for Metric, imperial for Imperial
  22.   unit_system: metric
  23.   # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
  24.   time_zone: America/Toronto
  25.  
  26.   customize:
  27.     device_tracker.boba:
  28.       icon: mdi:windows
  29.     device_tracker.domo:
  30.       icon: mdi:raspberrypi
  31.     device_tracker.wii:
  32.       icon: mdi:wii
  33.     device_tracker.printer:
  34.       icon: mdi:printer
  35.  
  36.  
  37. # Show links to resources in log and frontend
  38. #introduction:
  39.  
  40. # Enables the frontend
  41. frontend:
  42. http:
  43.  # Uncomment this to add a password (recommended!)
  44.   # api_password: PASSWORD
  45.   # Uncomment this if you are using SSL or running in Docker etc
  46.   # base_url: example.duckdns.org:8123
  47.  
  48. # Checks for available updates
  49. updater:
  50. # Discover some devices automatically
  51. #discovery:
  52.  
  53. # Allows you to issue voice commands from the frontend in enabled browsers
  54. conversation:
  55. # Enables support for tracking state changes over time.
  56. history:
  57. # View all events in a logbook
  58. logbook:
  59. # Track the sun
  60. sun:
  61. # Weather Prediction
  62. #sensor:
  63. #  platform: yr
  64.  
  65. # Text to speech
  66. tts:
  67.   platform: google
  68.  
  69. light:
  70.  - platform: lifx
  71.    broadcast: 192.168.1.255
  72.  
  73. device_tracker:
  74. # - platform: nmap_tracker
  75. #   hosts: 192.168.1.2-255
  76.  - platform: asuswrt
  77.    host: 192.168.1.1
  78.    username: admin
  79.    password: *******
  80.  
  81.  
  82.  
  83. media_player:
  84.   - platform: kodi
  85.     host: yoda
  86.     name: Kodi
  87.     username: xbmc
  88.     password: *****
  89.   - platform: panasonic_viera
  90.     host: 192.168.1.125
  91.  
  92. sensor:
  93.   - platform: hydroquebec
  94.     username: *****
  95.     password: *****
  96.     monitored_variables:
  97.     - period_total_bill
  98.      - period_length
  99.      - period_total_days
  100.      - period_mean_daily_bill
  101.      - period_mean_daily_consumption
  102.      - period_total_consumption
  103.      - period_lower_price_consumption
  104.      - period_higher_price_consumption
  105.      - yesterday_total_consumption
  106.      - yesterday_lower_price_consumption
  107.      - yesterday_higher_price_consumption
  108.  
  109. group:
  110.   HydroQuebec:
  111.     entities:
  112.      - sensor.hydroquebec_period_total_bill
  113.       - sensor.hydroquebec_period_length
  114.       - sensor.hydroquebec_period_total_days
  115.       - sensor.hydroquebec_period_mean_daily_bill
  116.       - sensor.hydroquebec_period_mean_daily_consumption
  117.       - sensor.hydroquebec_period_total_consumption
  118.       - sensor.hydroquebec_period_lower_price_consumption
  119.       - sensor.hydroquebec_period_higher_price_consumption
  120.       - sensor.hydroquebec_yesterday_total_consumption
  121.       - sensor.hydroquebec_yesterday_lower_price_consumption
  122.       - sensor.hydroquebec_yesterday_higher_price_consumption
  123.   Réseau:
  124.     entities:
  125.      - device_tracker.boba
  126.       - device_tracker.christinepc
  127.       - device_tracker.domo
  128.       - device_tracker.jango
  129.       - device_tracker.r2d2
  130.       - device_tracker.yoda
  131.       - device_tracker.wii
  132.       - device_tracker.obi200
  133.       - device_tracker.printer
  134.   Famille:
  135.     entities:
  136.      - device_tracker.JP_Lumia
  137.       - device_tracker.christine
  138.  
  139.   Services:
  140.     view: yes
  141.     name: Services
  142.     entities:
  143.      - group.HydroQuebec
  144. homeassistant@Domo:~$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement