Ruckus device tracker: Provide ability to only track selected devices

The Ruckus device_tracker integration is great, but I have a LOT of wireless devices on my network and it pollutes the Home Assistant device database with all of them.

It would be nice if I could specify an allow list of mac addresses of the few devices I actually want to track. Is this possible?

I’d like to ideally provide a very short list of MAC addresses to track and only have them in the Home assistant database. As of right now there are ~100 devices being tracked that I don’t care about.

You didn’t vote for your own feature. Also duplicates : Ruckus Unleashed integration needs way to remove old entities

This might solve your problem. Disable automatic polling of the integration and create an automation.

alias: Ruckus - Poll for updates
description: ""
trigger:
  - platform: time_pattern
    seconds: /30
condition: []
action:
  - service: homeassistant.update_entity
    data: {}
    target:
      entity_id:
        - device_tracker.b_iphone_wifi
        - device_tracker.a_iphone_wifi
mode: single