This is a complete configuration example. Fill in your API key, longitude and latitude. Please note that the worldtidesinfo
sensor’s name is transformed into the entity id which in turn is required in the template sensor configuration.
sensor:
- platform: worldtidesinfo
api_key: <...>
name: My Favourite Beach
latitude: <...>
longitude: <...>
- platform: template
sensors:
tide_my_favourite_beach_next_high:
value_template: '{{ as_timestamp(states.sensor.my_favourite_beach.attributes.high_tide_time_utc) | timestamp_custom("%a %d/%m/%Y %H:%M") }}'
friendly_name: "My Favourite Beach Next High Tide"
tide_my_favourite_beach_next_low:
value_template: '{{ as_timestamp(states.sensor.my_favourite_beach.attributes.low_tide_time_utc) | timestamp_custom("%a %d/%m/%Y %H:%M") }}'
friendly_name: "My Favourite Beach Next Low Tide"