Skip to content

Instantly share code, notes, and snippets.

@drparham
Created February 28, 2016 17:11
Show Gist options
  • Save drparham/279ad4a828e549e7296b to your computer and use it in GitHub Desktop.
Save drparham/279ad4a828e549e7296b to your computer and use it in GitHub Desktop.
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# C for Celcius, F for Fahrenheit
temperature_unit: F
# Location required to calculate the time the sun rises and sets
# 39.8135442,-105.0816602
latitude: 39.8135442
longitude: -105.0816602
temperature_unit: F
# Pick yours from here: http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
time_zone: America/Denver
# Track the sun
sun:
wink:
access_token: [redacted]
refresh_token: [redacted]
mqtt:
broker: 192.168.0.109
port: 1883
client_id: home-assistant-1
keepalive: 60
switch:
- platform: mqtt
name: "Over Counter Lights"
state_topic: "smartthings/Over Counter Lights/switch"
command_topic: "smartthings/Over Counter Lights/switch"
brightness_state_topic: "smartthings/Over Counter Lights/level"
brightness_command_topic: "smartthings/Over Counter Lights/level"
payload_on: "on"
payload_off: "off"
retain: true
- platform: mqtt
name: "Under Cabinent Lights"
state_topic: "smartthings/Under Cabinet Lights/switch"
command_topic: "smartthings/Under Cabinet Lights/switch"
payload_on: "on"
payload_off: "off"
retain: true
- platform: mqtt
name: "Living Room Lamps"
state_topic: "smartthings/Lamp Switch/switch"
command_topic: "smartthings/Lamp Switch/switch"
payload_on: "on"
payload_off: "off"
retain: true
- platform: mqtt
name: "Chandelier"
state_topic: "smartthings/Chandelier/switch"
command_topic: "smartthings/Chandelier/switch"
brightness_state_topic: "smartthings/Chandelier/level"
brightness_command_topic: "smartthings/Chandelier/level"
payload_on: "on"
payload_off: "off"
retain: true
camera:
platform: generic
still_image_url: http://192.168.0.108/snapshot.cgi?resolution=32
name: Nursery
username: [redacted]
password: [redacted]
ecobee:
api_key: [redacted]
hold_temp: False
#zwave:
# usb_path: /dev/ttyACM0
# config_path: /usr/local/share/python-openzwave/config
# polling_interval: 10
# Enables the frontend
frontend:
# Discover some devices automatically
discovery:
# Checks for available updates
updater:
# Show links to resources in log and frontend
# introduction:
# Enables support for tracking state changes over time.
history:
# Allows you to issue voice commands from the frontend
conversation:
# View all events in a logbook
logbook:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment