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-flobymoen

v1.0.9

Published

A Homebridge plugin for the Flo by Moen system

Downloads

42

Readme

NPM Version

Homebridge Plug-In for Flo by Moen

An Homebridge plug-in to integrate the Flo by Moen 3 water system with HomeKit. This plug-in manages the Flo smart water kit system. It monitors and control devices via the Flo unofficial cloud API. Thanks to the aioflo Python3 library https://github.com/bachya/aioflo development team, this module uses the logic gain from reviewing those libraries/code.

Limitation:

  • This module works with Smart Water Shutoff and Water sensors only. It does not support the recently release Flo Smart Water Faucets.
  • This module will poll for the status of the various components based frequency provided in configuration file. No realtime notification is provided.

Configuration options

| Attributes | Description | | ----------------- | ------------------------------------------------------------------------------------------------------------------------ | | username | Flo Moen username. This is a required value. | | password | Flo Moen password. This is a required value. | | deviceRefresh | Polling interval to obtain status of Flo devices, provide in seconds. Default to 90 seconds, this is an optional value. Please note: Small values may cause account lock or frequent API errors. | | sleepRevertMinutes | When Smart Water Shutoff Value is put into sleep what amount of time before it reverted back to previous mode (away or home). Time value is provided in minutes (120, 1440, 4320). Default to 120 mins (2 hours), this is an optional value. | showTemperatureAndHumidity| Display Temperature and Humidity for Water Sensors in Homekit. Default to true, this is an optional value. | | showHealthTestSwitch | Display Health Check switch in Homekit. The switch will turn on for 4 mins while Flo runs the health check. Default to false, this is an optional value.
| disableCache | Disable the storage of Flo access token. This will cause plug-in to obtain a new access token upon startup. This could result in a minor performance hit at startup. Default to false, this is an optional value. |
| enableValveControl | Enable Homekit to control the Smart Water Shutoff valve. By design the valve will display in Homekit (e.g. Home). The status of the valve will be displayed and monitored, however it will not be controllable (e.g. Open or Close) unless this value is set to true. Default to false, this is an optional value. | | treatWarningAsCritical | By default Flo warnings are treated as alarm faults. Set this value to true to escalated Flo warnings to critical resulting in a Homekit alarm trigger event. | | offlineTimeLimit | Battery device periodically send data to the Flo servers. This value determine how long before plug-in indicates the device is offline and a general fault is generated. Defaults to 4 hours.| | pingRefresh | Set value to force a refresh of Flo Cloud service. Should be used if device updates are not occurring for an extended period of time. | | excludedDevices | Using the device serial number to suppress from HomeKit. This is an optional value. | |

Example configuration is below.

...

"platforms": [
{
    "name": "Flo-by-Moen",
    "auth" : {
      "username": <username>,
      "password": <password>
    },
    "deviceRefresh": 90,
    "sleepRevertMinutes": 120,
    "platform": "Flo-by-Moen"
}
...