Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- homeassistant:
- # Name of the location where Home Assistant is running
- name: Home
- # Location required to calculate the time the sun rises and sets
- latitude: 24.999999
- longitude: -24.999999
- # Impacts weather/sunrise data (altitude above sea level in meters)
- elevation: 106
- # metric for Metric, imperial for Imperial
- unit_system: metric
- # Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
- time_zone: America/Toronto
- # Customization file
- customize: !include customize.yaml
- zone:
- - name: Maison
- latitude: 24.999999
- longitude: -24.999999
- - name: Travail
- latitude: 24.4860121
- longitude: -24.6786811
- # Show links to resources in log and frontend
- # introduction:
- # Enables the frontend
- frontend:
- # Enables configuration UI
- config:
- http:
- # Secrets are defined in the file secrets.yaml
- # api_password: !secret http_password
- # Uncomment this if you are using SSL/TLS, running in Docker container, etc.
- # base_url: example.duckdns.org:8123
- # Checks for available updates
- # Note: This component will send some information about your system to
- # the developers to assist with development of Home Assistant.
- # For more information, please see:
- # https://home-assistant.io/blog/2016/10/25/explaining-the-updater/
- updater:
- # Optional, allows Home Assistant developers to focus on popular components.
- # include_used_components: true
- # Discover some devices automatically
- discovery:
- # Allows you to issue voice commands from the frontend in enabled browsers
- conversation:
- # Enables support for tracking state changes over time
- history:
- # View all events in a logbook
- logbook:
- # Enables a map showing the location of tracked devices
- map:
- # Track the sun
- sun:
- device_tracker:
- - platform: owntracks
- # Weather prediction
- sensor:
- - platform: yr
- - platform: plex
- host: 192.168.2.34
- name: plexserver
- username: user
- password: xxxxxxxxxxxxxxx
- server: mediaserver
- token: cvxcvdsgdsfeswfsdeffsfsfesw
- # Text to speech
- tts:
- - platform: google
- # Cloud
- cloud:
- group: !include groups.yaml
- automation: !include automations.yaml
- script: !include scripts.yaml
- # MQTT Server
- mqtt:
- broker: 192.168.2.24
- port: 1883
- client_id: home-assistant-1
- keepalive: 60
- username: HAUSERNAME1
- password: HAPASSWORD1
- protocol: 3.1
- birth_message:
- topic: "tele/hass1/LWT"
- payload: "Online"
- qos: 1
- retain: true
- will_message:
- topic: "tele/hass1/LWT"
- payload: "Offline"
- qos: 1
- retain: true
- # Switches
- light:
- - platform: mqtt
- name: "Lampe Chevet Chambre"
- state_topic: "stat/chambre/lampe/POWER"
- command_topic: "cmnd/chambre/lampe/POWER"
- qos: 1
- payload_on: "ON"
- payload_off: "OFF"
- retain: true
- camera:
- - platform: mjpeg
- mjpeg_url: http://192.168.2.132:8081/videostream.cgi?user=admin&pwd=xxxxxxxxxxxxxxx
- name: Rabbit Cam 1
- - platform: mjpeg
- mjpeg_url: http://192.168.2.239:8080/?action=stream
- name: Rabbit Cam 2
- username: stream
- password: xxxxxxxxxxxxxxx
- - platform: mjpeg
- mjpeg_url: http://192.168.2.240:8080/?action=stream
- name: Rabbit Cam 3
- username: stream
- password: xxxxxxxxxxxxxxx
Advertisement
Advertisement
Advertisement
RAW Paste Data
Copied
Advertisement