home-assistant.io/source/_integrations/flume.markdown

1.4 KiB

title description ha_category ha_iot_class ha_release ha_config_flow ha_codeowners ha_domain ha_dhcp ha_platforms
Flume Documentation about the flume sensor.
Sensor
Cloud Polling 0.103 true
@ChrisMandich
@bdraco
flume true
sensor

The flume sensor will show you the current flume status for the given Device ID.

Flume monitors the real-time status of your home water meter. Allowing the end-user to detect small leaks, gain real-time information on household water consumption, set water goals and budgets, and receive push notifications when suspicious water activities occur.

{% include integrations/config_flow.md %}

You can find your Client ID and Client Secret under "API Access" on the settings page.

The Flume API access is available to Flume Insight users only, which may require a paid subscription.

To add Flume to your installation, go to Configuration >> Devices & Services in the UI, click the button with + sign and from the list of integrations select Flume.

Configuration for Binary Sensor

The following YAML creates a binary sensor. This requires the default sensor to be configured successfully.

{% raw %}

# Example configuration.yaml entry
template:
  - binary_sensor:
    - name: "Flume Flow Status"
      state: >-
        {{ states('sensor.flume_sensor') != "0" }}        

{% endraw %}