home-assistant.io/source/_components/sensor.tank_utility.markdown
Fabian Affolter a1277a8cb6
Various fixes
2018-09-03 10:21:56 +02:00

1.8 KiB

layout title description date sidebar comments sharing footer logo ha_category ha_release
page Tank Utility Sensor How to integrate Tank Utility sensors within Home Assistant. 2017-08-24 08:21 true false true true tank_utility.png Energy 0.53

Add Tank Utility propane tank monitors to Home Assistant.

{% linkable_title Setup %}

{% linkable_title Authentication %}

Authentication for the Tank Utility API is performed with the same email and password credentials used at https://app.tankutility.com.

{% linkable_title Devices %}

Each item in the list of devices is a 24 character string. These values can be found by clicking on the Usage Reports link at the bottom of the graph on the Tank Utility devices page.

The device item value is the last segment of the URL path, e.g., the URL https://app.tankutility.com/#/reports/000000000000000000000000 would indicate 000000000000000000000000 as a device value.

{% linkable_title Configuration %}

To enable the component, add the following lines to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: tank_utility
    email: YOUR_EMAIL_ADDRESS
    password: YOUR_PASSWORD
    devices:
      - 000000000000000000000000

{% configuration %} email: description: "Your https://app.tankutility.com email address." required: true type: string password: description: "Your https://app.tankutility.com password." required: true type: string unit_of_measurement: description: All devices to monitor. required: true type: map {% endconfiguration %}