npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

homebridge-circadian-hue

v0.9.1

Published

This plugin interacts with a Hue Hub instance and slowly synchronizes your color changing lights with the regular naturally occurring color temperature of the sky throughout the day. This gives your environment a more natural feel, with cooler hues during

Downloads

7

Readme

Homebridge Circadian Hue

This plugin interacts with a Hue Hub instance and slowly synchronizes your color changing lights with the regular naturally occurring color temperature of the sky throughout the day. This gives your environment a more natural feel, with cooler hues during the midday and warmer tints near twilight and dawn. Based on the Circadian Lighting Home Assistant Component.

Configuration

latitude value required for working out sun position.

longitude value required for working out sun position.

bridgeAddress is the IP address of the Hue bridge.

bridgeUsername is the username to use to authenticate to the Hue bridge, see here on how to generate a username.

bridgePollingInterval is the interval in seconds between collecting information from the Hue bridge.

maxColortemp is the maximum colour temperature value that will be set.

minColortemp is the minimum colour temperature value that will be set.

excludeColortemp is a comma seperated list of lights that will not have their colour temperature changed.

maxBrightness is the maximum brightness value that will be set.

minBrightness is the minimum brightness value that will be set.

excludeBrightness is a comma seperated list of lights that will not have their brightness changed.

sleepColortemp is the colour temperature value that will be set when sleep mode is enabled.

sleepBrightness is the brightness value that will be set when sleep mode is enabled.

excludeLights is a comma seperated list of lights that will be excluded from all changes.

updateInterval is the interval in seconds that the setting on a light will be changed.

excludeManualOverride is a comma seperated list of lights that will not be manually overridable*.

* When the plugin detects that the characteristics of a light has significantly changed since it was last checked, the light will be put into "manual mode" and no further brightness or colour temperature changes will be applied by the plugin to this specific light. To reset, and have the light controlled by the plugin again, simply turn the light off and on.

Example Config

...
"accessories": [
...
        {
            "name": "Circadian Hue",
            "accessory": "CircadianHue",
            "latitude": 43.543,
            "longitude": -9.4445,
            "bridgeAddress": "192.168.1.100",
            "bridgeUsername": "kj3riwej3ff43j4fk3j4k4",
            "bridgePollingInterval": 0.5,
            "excludeLights": "8,9,10,12,13,15",
            "updateInterval": 90,
            "maxBrightness": 100,
            "minBrightness": 50,
            "excludeColortemp": "",
            "excludeManualOverride": "1,5,14"
        }
...
    ]
...