mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 01:06:52 +00:00
Update Waze documentation for toll, ferry and subscription options (#10902)
This commit is contained in:
parent
870463b2ef
commit
6a4e4b2200
@ -64,8 +64,25 @@ vehicle_type:
|
|||||||
description: "Set the vehicle type for the sensor: car, taxi, or motorcycle, otherwise the default is car."
|
description: "Set the vehicle type for the sensor: car, taxi, or motorcycle, otherwise the default is car."
|
||||||
required: false
|
required: false
|
||||||
type: string
|
type: string
|
||||||
|
avoid_ferries:
|
||||||
|
description: "If this is set to true, Waze will avoid ferries on your route."
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
avoid_toll_roads:
|
||||||
|
description: "If this is set to true, Waze will avoid toll roads on your route."
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
|
avoid_subscription_roads:
|
||||||
|
description: "If this is set to true, Waze will avoid roads needing a vignette / subscription on your route."
|
||||||
|
required: false
|
||||||
|
type: boolean
|
||||||
|
default: false
|
||||||
{% endconfiguration %}
|
{% endconfiguration %}
|
||||||
|
|
||||||
|
When using the `avoid_toll_roads`, `avoid_subscription_roads` and `avoid_ferries` options be aware that Waze will sometimes still route you over toll roads or ferries if a valid vignette/subscription is assumed. Default behaviour is that Waze will route you over roads having subscription options, so best is to set both `avoid_toll_roads` and `avoid_subscription_roads` or `avoid_ferries` if needed and experiment to ensure the desired outcome.
|
||||||
|
|
||||||
## Example using dynamic destination
|
## Example using dynamic destination
|
||||||
|
|
||||||
Using the flexible option to set a sensor value to the `destination`, you can setup a single Waze integration that will calculate travel time to multiple optional locations on demand.
|
Using the flexible option to set a sensor value to the `destination`, you can setup a single Waze integration that will calculate travel time to multiple optional locations on demand.
|
||||||
@ -118,6 +135,15 @@ sensor:
|
|||||||
region: 'US'
|
region: 'US'
|
||||||
units: imperial # 'metric' for Metric, 'imperial' for Imperial
|
units: imperial # 'metric' for Metric, 'imperial' for Imperial
|
||||||
vehicle_type: motorcycle # vehicle type used for routing
|
vehicle_type: motorcycle # vehicle type used for routing
|
||||||
|
|
||||||
|
# Avoiding toll, subscription
|
||||||
|
- platform: waze_travel_time
|
||||||
|
name: Westerscheldetunnel
|
||||||
|
origin: 51.330436, 3.802043
|
||||||
|
destination: 51.445677, 3.749929
|
||||||
|
region: 'EU'
|
||||||
|
avoid_toll_roads: true
|
||||||
|
avoid_subscription_roads: true
|
||||||
```
|
```
|
||||||
{% endraw %}
|
{% endraw %}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user