GithubHelp home page GithubHelp logo

keloran / adaptive-lighting Goto Github PK

View Code? Open in Web Editor NEW

This project forked from basnijholt/adaptive-lighting

0.0 1.0 0.0 514 KB

Adaptive Lighting custom component for Home Assistant

License: Apache License 2.0

Python 100.00%

adaptive-lighting's Introduction

hacs_badge Version

All Contributors

Automatically adapt the brightness and color of lights based on the sun position and take over manual control

Try out this code by adding https://github.com/basnijholt/adaptive-lighting to your custom repos in HACS (Home Assistant Community Store) and install it!

The adaptive_lighting platform changes the settings of your lights throughout the day. It uses the position of the sun to calculate the color temperature and brightness that is most fitting for that time of the day. Scientific research has shown that this helps to maintain your natural circadian rhythm (your biological clock) and might lead to improved sleep, mood, and general well-being.

In practical terms, this means that after the sun sets, the brightness of your lights will decrease to a certain minimum brightness, while the color temperature will be at its coolest color temperature at noon, after which it will decrease and reach its warmest color at sunset. Around sunrise, the opposite will happen.

Additionally, the integration provides a way to define and set your lights in "sleep mode". When "sleep mode" is enabled, the lights will be at a minimal brightness and have a very warm color.

The integration creates 4 switches (in this example the component's name is "living_room"):

  1. switch.adaptive_lighting_living_room, which turns the Adaptive Lighting integration on or off. It has several attributes that show the current light settings.
  2. switch.adaptive_lighting_sleep_mode_living_room, which when activated, turns on "sleep mode" (you can set a specific sleep_brightness and sleep_color_temp).
  3. switch.adaptive_lighting_adapt_brightness_living_room, which sets whether the integration should adapt the brightness of the lights (if supported by the light).
  4. switch.adaptive_lighting_adapt_color_living_room, which sets whether the integration should adapt the color of the lights (if supported by the light).

Taking back control

Although having your lights automatically adapt is great most of the time, there might be times at which you want to set the lights to a different color/brightness and keep it that way. For this purpose, the integration (when take_over_control is enabled) automatically detects whether someone (e.g., person toggling the light switch) or something (automation) changes the lights. If this happens and the light is already on, the light that was changed gets marked as "manually controlled" and the Adaptive Lighting component will stop adapting that light until it turns off and on again (or if you use the service call adaptive_lighting.set_manual_control). This mechanism works by listening to all light.turn_on calls that change the color or brightness and by noting that the component did not make the call. Additionally, there is an option to detect all state changes (when detect_non_ha_changes is enabled), so also changes to the lights that were not made by a light.turn_on call (e.g., through an app or via something outside of Home Assistant.) It does this by comparing a light's state to Adaptive Lighting's previously used settings. Whenever a light gets marked as "manually controlled", an adaptive_lighting.manual_control event is fired, such that one can use this information in automations.

Configuration

This integration is both fully configurable through YAML and the frontend. (Configuration -> Integrations -> Adaptive Lighting, Adaptive Lighting -> Options) Here, the options in the frontend and in YAML have the same names.

# Example configuration.yaml entry
adaptive_lighting:
  lights:
    - light.living_room_lights

Options

option description required default type
name The name to use when displaying this switch. False default string
lights List of light entities for Adaptive Lighting to control (may be empty). False list []
prefer_rgb_color Whether to use RGB color adjustment instead of native light color temperature. False False boolean
initial_transition How long the first transition is when the lights go from off to on. False 1 time
sleep_transition How long the transition is when when "sleep mode" is toggled False 1 time
transition How long the transition is when the lights change, in seconds. False 45 integer
interval How often to adapt the lights, in seconds. False 90 integer
min_brightness The minimum percent of brightness to set the lights to. False 1 integer
max_brightness The maximum percent of brightness to set the lights to. False 100 integer
min_color_temp The warmest color temperature to set the lights to, in Kelvin. False 2000 integer
max_color_temp The coldest color temperature to set the lights to, in Kelvin. False 5500 integer
sleep_brightness Brightness of lights while the sleep mode is enabled. False 1 integer
sleep_rgb_or_color_temp Use either 'rgb_color' or 'color_temp' when in sleep mode. False 'color_temp' string
sleep_rgb_color List of three numbers between 0-255, indicating the RGB color in sleep mode (only used when sleep_rgb_or_color_temp is 'rgb_color'). False [255, 56, 0] list
sleep_color_temp Color temperature of lights while the sleep mode is enabled (only used when sleep_rgb_or_color_temp is 'color_temp'). False 1000 integer
sunrise_time Override the sunrise time with a fixed time. False None time
max_sunrise_time Make the virtual sun always rise at at most a specific time while still allowing for even earlier times based on the real sun False None time
sunrise_offset Change the sunrise time with a positive or negative offset. False 0 time
sunset_time Override the sunset time with a fixed time. False None time
min_sunset_time Make the virtual sun always set at at least a specific time while still allowing for even later times based on the real sun False None time
sunset_offset Change the sunset time with a positive or negative offset. False 0 time
only_once Whether to keep adapting the lights (false) or to only adapt the lights as soon as they are turned on (true). False False boolean
take_over_control If another source calls light.turn_on while the lights are on and being adapted, disable Adaptive Lighting. False True boolean
detect_non_ha_changes Whether to detect state changes and stop adapting lights, even not from light.turn_on. Needs take_over_control to be enabled. Note that by enabling this option, it calls 'homeassistant.update_entity' every 'interval'! False False boolean
separate_turn_on_commands Whether to use separate light.turn_on calls for color and brightness, needed for some types of lights False False boolean
send_split_delay Wait between commands (milliseconds), when separate_turn_on_commands is used. May ensure that both commands are handled by the bulb correctly. False 0 integer
adapt_delay Wait time in seconds between light turn on, and Adaptive Lights applying changes to the light state. May avoid flickering. False 0 integer

Full example:

# Example configuration.yaml entry
adaptive_lighting:
- name: "default"
  lights: []
  prefer_rgb_color: false
  transition: 45
  initial_transition: 1
  interval: 90
  min_brightness: 1
  max_brightness: 100
  min_color_temp: 2000
  max_color_temp: 5500
  sleep_brightness: 1
  sleep_color_temp: 1000
  sunrise_time: "08:00:00"  # override the sunrise time
  sunrise_offset:
  sunset_time:
  sunset_offset: 1800  # in seconds or '00:15:00'
  take_over_control: true
  detect_non_ha_changes: false
  only_once: false

Services

adaptive_lighting.**apply** applies Adaptive Lighting settings to lights on demand.

Service data attribute Optional Description
entity_id no The entity_id of the switch with the settings to apply.
lights yes A light (or list of lights) to apply the settings to.
transition yes The number of seconds for the transition.
adapt_brightness yes Whether to change the brightness of the light or not.
adapt_color yes Whether to adapt the color on supporting lights.
prefer_rgb_color yes Whether to prefer RGB color adjustment over of native light color temperature when possible.
turn_on_lights yes Whether to turn on lights that are currently off.

adaptive_lighting.set_manual_control can mark (or unmark) whether a light is "manually controlled", meaning that when a light has manual_control, the light is not adapted.

Service data attribute Optional Description
entity_id no The entity_id of the switch in which to (un)mark the light as being "manually controlled".
lights yes entity_id(s) of lights, if not specified, all lights in the switch are selected.
manual_control yes Whether to add ('true') or remove ('false') the light from the 'manual_control' list, default: true

Automation examples

Reset the manual_control status of a light after an hour.

- alias: "Adaptive lighting: reset manual_control after 1 hour"
  mode: parallel
  trigger:
    platform: event
    event_type: adaptive_lighting.manual_control
  variables:
    light: "{{ trigger.event.data.entity_id }}"
    switch: "{{ trigger.event.data.switch }}"
  action:
    - delay: "01:00:00"
    - condition: template
      value_template: "{{ light in state_attr(switch, 'manual_control') }}"
    - service: adaptive_lighting.set_manual_control
      data:
        entity_id: "{{ switch }}"
        lights: "{{ light }}"
        manual_control: false

Toggle multiple Adaptive Lighting switches to "sleep mode" using an input_boolean.sleep_mode.

- alias: "Adaptive lighting: toggle 'sleep mode'"
  trigger:
    - platform: state
      entity_id: input_boolean.sleep_mode
    - platform: homeassistant
      event: start  # in case the states aren't properly restored
  variables:
    sleep_mode: "{{ states('input_boolean.sleep_mode') }}"
  action:
    service: "switch.turn_{{ sleep_mode }}"
    entity_id:
      - switch.adaptive_lighting_sleep_mode_living_room
      - switch.adaptive_lighting_sleep_mode_bedroom

Other

See the documentation of the PR at https://deploy-preview-14877--home-assistant-docs.netlify.app/integrations/adaptive_lighting/ and this video on Reddit to see how to add the integration and set the options.

This integration was originally based of the great work of @claytonjn https://github.com/claytonjn/hass-circadian_lighting, but has been 100% rewritten and extended with new features.

Having problems?

Please enable debug logging by putting this in configuration.yaml:

logger:
  default: warning
  logs:
    custom_components.adaptive_lighting: debug

and after the problem occurs please create an issue with the log (/config/home-assistant.log).

Graphs!

These graphs were generated using the values calculated by the Adaptive Lighting sensor/switch(es).

Sun Position:

cl_percent|690x131

Color Temperature:

cl_color_temp|690x129

Brightness:

cl_brightness|690x130

Contributors

Bas Nijholt
Bas Nijholt

πŸ’» 🚧 πŸ›
Sven Serlier
Sven Serlier

πŸ“–
Will Puckett
Will Puckett

πŸ“–
vapescherov
vapescherov

πŸ’»
Travis Pew
Travis Pew

πŸ“–
Sindre Broch
Sindre Broch

πŸ“–
Denis Shulyaka
Denis Shulyaka

πŸ’»
@RubenKelevra
@RubenKelevra

πŸ“– πŸ’»
JΓΌri Rebane
JΓΌri Rebane

🌍
quantumlemur
quantumlemur

πŸ’»
Michael Kirsch
Michael Kirsch

πŸ’»
Nicholai Nissen
Nicholai Nissen

🌍
Martin Myhrman
Martin Myhrman

🌍
Michel Peterson
Michel Peterson

πŸ’»
MangoScango
MangoScango

πŸ’»
Lynilia
Lynilia

🌍
LukaszP2
LukaszP2

🌍
Joscha Wagner
Joscha Wagner

🌍
skdzzz
skdzzz

🌍
Simon Gurcke
Simon Gurcke

πŸ’»
SΓΆren Beye
SΓΆren Beye

πŸ’»
Hudson Brendon
Hudson Brendon

🌍
Gabriel Visser
Gabriel Visser

πŸ“–
Gleb
Gleb

🌍
Deleted user
Deleted user

🌍
Avi Miller
Avi Miller

πŸ“– πŸ’»
Denys Dovhan
Denys Dovhan

🌍
David Stenbeck
David Stenbeck

πŸ“–
Kevin Addeman
Kevin Addeman

πŸ’»
covid10
covid10

🌍 πŸ’»
Michael Chisholm
Michael Chisholm

πŸ’»
Justin Paupore
Justin Paupore

πŸ’»
bedaes
bedaes

πŸ’»
awashingmachine
awashingmachine

🌍
Clayton Nummer
Clayton Nummer

πŸ’»
Robert Crandall
Robert Crandall

πŸ’»
Matt Forster
Matt Forster

πŸ’»
Mark Niemeyer
Mark Niemeyer

🌍 πŸ’»
Elliott Plack
Elliott Plack

πŸ“–
ngommers
ngommers

🌍
Add your contributions

adaptive-lighting's People

Contributors

basnijholt avatar claytonjn avatar rubenkelevra avatar allcontributors[bot] avatar lejoui avatar mark-niemeyer avatar spar34vi avatar covid10 avatar danaues avatar djelibeybi avatar davst avatar hudsonbrendon avatar mangoscango avatar matt-forster avatar denysdovhan avatar talllguy avatar glebsterx avatar jowgn avatar blueshiftlabs avatar repsionu avatar kberstene avatar lukaszp2 avatar lynilia avatar myhrmans avatar chishm avatar oekn5w avatar mpeterson avatar quantumlemur avatar nicholaiii avatar shulyaka avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.