Is there a way to specify multiple include/exclude filters for the Waze component? I want to force it to report on a specific route, as such I need to exclude about 3 different road names, and include 2… Can we comma/pipe separate, or use regex?
- platform: waze_travel_time
origin: <my-postcode>
destination: <work-postcode>
region: 'EU'
name: My commute time
incl_filter: M6
excl_filter: A6
This isn’t how the waze api works. It gives 3 responses and only 3 responses and you have no choice in what it returns. From the 3 we receive from the API, you can filter out using the incl_filter or excl_filter. Currently the filter only accepts 1 value. In your case, you should only need the included route. However, if the included route isn’t returned from the API, nothing will be given.