Update traccar documentation with new parameters (#8618)

* Update traccar documentation with new parameters 

Added scan_interval and monitored_conditions

* Add clarification on monitored_conditions

* ✏️ Removes scan_interval
This commit is contained in:
lapy 2019-02-25 20:53:20 +00:00 committed by Franck Nijhof
parent 70a7b5bf32
commit 8a0cf23e69

View File

@ -60,4 +60,17 @@ verify_ssl:
required: false required: false
type: boolean type: boolean
default: true default: true
monitored_conditions:
description: Additional traccar computed attributes or device-related attributes to include in the scan.
required: false
type: list
{% endconfiguration %} {% endconfiguration %}
The parameter `monitored_conditions` allows you to track non standard attributes from the traccar platform and use them in your Home Assistant. For example if you need to monitor the state of the non standard attribute `alarm` and a custom computed attribute `mycomputedattribute` just fill the configuration with:
```yaml
device_tracker:
- platform: traccar
...
monitored_conditions: ['alarm', 'mycomputedattribute']
```