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'] +```