home-assistant.io/source/_components/proximity.markdown
Ravi K 5dfb402e8f Update proximity.markdown (#7923)
I added different values that were available for 'unit_of_measurement'. This information was missing from the help page.
2018-12-27 14:55:38 +01:00

3.3 KiB

layout title description date sidebar comments sharing footer logo ha_category ha_release ha_qa_scale
page Proximity Instructions on how to setup Proximity monitoring within Home Assistant. 2016-02-07 10:00 true false true true home-assistant.png Automation 0.13 internal

The proximity component allows you to monitor the proximity of devices to a particular zone and the direction of travel. The result is an entity created in Home Assistant which maintains the proximity data.

This component is useful to reduce the number of automation rules required when wanting to perform automations based on locations outside a particular zone. The zone and state based triggers allow similar control but the number of rules grows exponentially when factors such as direction of travel need to be taken into account.

Some examples of its use include:

  • Increase thermostat temperature as you near home
  • Decrease temperature the further away from home you travel

The Proximity entity which is created has the following values:

  • state: Distance from the monitored zone (in km)
  • dir_of_travel: Direction of the closest device to the monitored zone. Values are:
    • 'not set'
    • 'arrived'
    • 'towards'
    • 'away_from'
    • 'unknown'
    • 'stationary'
  • dist_to_zone: Distance from the monitored zone (in km)
  • unit_of_measurement: Measurement of distance. Values are:
    • 'km'
    • 'm'
    • 'mi'
    • 'ft'

To enable this component in your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
proximity:
  home: 
    ignored_zones:
      - twork
    devices:
      - device_tracker.car1
    tolerance: 50
    unit_of_measurement: mi

{% configuration %} zone: description: The zone to which this component is measuring the distance to. Default is the home zone. required: false type: map keys: ignored_zones: description: Where proximity is not calculated for a device (either the device being monitored or ones being compared (e.g., work or school). required: false type: list devices: description: A list of devices to compare location against to check closeness to the configured zone. required: false type: list tolerance: description: The tolerance used to calculate the direction of travel in meters (m) to filter out small GPS coordinate changes. required: false type: integer unit_of_measurement: description: The unit of measurement for distance. Valid values are (km, m, mi, ft) [kilometers, meters, miles and feet respectively]. required: false type: string default: km {% endconfiguration %}

To add multiple proximity components, simply use a list in your configuration.yaml file:

# Example configuration.yaml entry
proximity:
  home:
    ignored_zones:
      - work
      - school
    devices:
      - device_tracker.car1
      - device_tracker.iphone1
      - device_tracker.iphone2
    tolerance: 50
    unit_of_measurement: mi
  home3:
    zone: home3
    devices:
      - device_tracker.iphone1
    tolerance: 50
  work:
    zone: work
    devices:
      - device_tracker.iphone2
    tolerance: 10