From 8a0cf23e69c7b6d9cc4aa81ac8237df3a3779fe0 Mon Sep 17 00:00:00 2001 From: lapy Date: Mon, 25 Feb 2019 20:53:20 +0000 Subject: [PATCH] Update traccar documentation with new parameters (#8618) * Update traccar documentation with new parameters Added scan_interval and monitored_conditions * Add clarification on monitored_conditions * :pencil2: Removes scan_interval --- .../_components/device_tracker.traccar.markdown | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/source/_components/device_tracker.traccar.markdown b/source/_components/device_tracker.traccar.markdown index 688d02d036e..17da63ecc64 100644 --- a/source/_components/device_tracker.traccar.markdown +++ b/source/_components/device_tracker.traccar.markdown @@ -60,4 +60,17 @@ verify_ssl: required: false type: boolean default: true -{% endconfiguration %} \ No newline at end of file +monitored_conditions: + description: Additional traccar computed attributes or device-related attributes to include in the scan. + required: false + type: list +{% 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'] +```