home-assistant.io/source/_components/noaa_tides.markdown
Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

2.0 KiB

title, description, ha_category, ha_release, logo, redirect_from
title description ha_category ha_release logo redirect_from
NOAA Tides Instructions to add NOAA Tide information to Home Assistant.
Environment
0.75 noaa.png
/components/sensor.noaa_tides/

The noaa_tides sensor platform uses details from NOAA Tides and Currents to provide information about the prediction for the tides for any location in the United States.

Setup

This sensor requires the use of a NOAA station ID. Search NOAA Tide Predictions to find a location. Use the ID from the search results in your configuration. Alternatively, you can determine a station ID from a URL. For example, 8721164 in the following URL: https://tidesandcurrents.noaa.gov/noaatidepredictions.html?id=8721164

Configuration

To use this sensor, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: noaa_tides
    station_id: 8721164

{% configuration %} station_id: description: ID of the station you'd like to track from https://tidesandcurrents.noaa.gov/tide_predictions.html. required: true type: string name: description: User-supplied sensor name. required: false default: NOAA Tides. type: string time_zone: description: User-selected timezone. required: false default: Local Standard Time/Local Daylight Time. type: list keys: gmt: description: Greenwich Mean Time. lst: description: Local Standard Time. The time local to the requested station. lst_ldt: description: Local Standard/Local Daylight Time. The time local to the requested station. unit_system: description: Specify the unit system. required: false default: Defaults to metric or imperial based on the Home Assistant configuration. type: string keys: metric: description: Metric (Celsius, meters, cm/s) units. english: description: English (fahrenheit, feet, knots) units. {% endconfiguration %}