Ok so I am brand new at HA and python in general so please bare with me. here is a copy of my current .yaml file
homeassistant:
# Name of the location where Home Assistant is running
name: Home
# Location required to calculate the time the sun rises and sets
latitude: 25.0833
longitude: -77.35
# Impacts weather/sunrise data (altitude above sea level in meters)
elevation: 0
# 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/Nassau
# Show links to resources in log and frontend
# introduction:
# Enables the frontend
frontend:
http:
# Uncomment this to add a password (recommended!)
api_password: #########
# Checks for available updates
updater:
# 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:
# Track the sun
sun:
# Weather Prediction
sensor:
platform: yr
##########
# py -m homeassistant --open-ui
#########
################
## Gear
################
##############################
########### LED Lights ########
##############################
light:
- platform: flux_led
# automatic_add: True
devices:
192.168.1.125:
name: TV_Light_Right
192.168.1.126:
name: TV_Light_Left
192.168.1.129:
name: Living_Room_Back_right
192.168.1.119:
name: Living_Room_Front_right
192.168.1.124:
name: Living_Room_Front_left
192.168.1.128:
name: Living_Room_back_left
192.168.1.120:
name: Tom_Bed_Light
192.168.1.127:
name: Lisa_Bed_Light
group:
default_view:
view: yes
bedroom_lights:
name: Bedroom Lights
entities: Tom_Bed_Light, Lisa_Bed_Light
TV_Lights:
name: TV Lights
entities: TV_Light_Left, TV_Light_Right
Living_Room_Flood_Lights:
name: Living Room Flood Lights
entities:
- Living_Room_back_left
- Living_Room_Front_left
- Living_Room_Front_right
- Living_Room_Back_right
All_Living_Room_Lights:
name: All Living Room Lights
entities:
- Living_Room_back_left
- Living_Room_Front_left
- Living_Room_Front_right
- Living_Room_Back_right
- TV_Light_Left
- TV_Light_Right
HA will start but gives me a notice that my group is not config’ed properly. I think im copying the tutorial right on and really dont understand what i have wrong. do i need to use the ip addresses for the lights? HA runs everything before the group section fine. Running this on a windows 7 machine with latest Python.