Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Diagnose Rainy Day Automation Issues #115

Open
brianjking opened this issue Aug 9, 2017 · 1 comment
Open

Diagnose Rainy Day Automation Issues #115

brianjking opened this issue Aug 9, 2017 · 1 comment

Comments

@brianjking
Copy link
Owner

Current Automation Prior to Edits:

- alias: Rainy Day
  trigger:
    platform: state
    entity_id: sensor.weather_precip_intensity
    to: 'rain'
  condition:
    - condition: state
      entity_id: group.all_devices
      state: 'home'
    - condition: time
      after: '14:00'
      before: '23:00'
  action:
    service: homeassistant.turn_on
    entity_id: group.livingroom_lights

- alias: Rain is over
  trigger:
    - platform: state
      entity_id: sensor.weather_precip_intensity
      to: 'None'
  condition:
    - condition: sun
      after: 'sunset'
  action:
    service: homeassistant.turn_off
    entity_id: group.livingroom_lights 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment