{"id":41635222,"url":"https://github.com/jshufro/home_assistant_noaa_tides","last_synced_at":"2026-01-24T14:49:31.646Z","repository":{"id":153399965,"uuid":"271032124","full_name":"jshufro/home_assistant_noaa_tides","owner":"jshufro","description":"A fork of Home Assistant's NOAA Tides sensor with additional features.","archived":false,"fork":false,"pushed_at":"2025-01-05T21:45:52.000Z","size":47,"stargazers_count":25,"open_issues_count":8,"forks_count":6,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-01-05T22:26:24.057Z","etag":null,"topics":["beaches","home-assistant","lovelace-ui","tides","tidesandcurrents"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jshufro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-06-09T14:55:28.000Z","updated_at":"2025-01-05T21:42:57.000Z","dependencies_parsed_at":"2025-01-06T00:02:08.208Z","dependency_job_id":null,"html_url":"https://github.com/jshufro/home_assistant_noaa_tides","commit_stats":{"total_commits":18,"total_committers":2,"mean_commits":9.0,"dds":0.05555555555555558,"last_synced_commit":"533ff5ef9209fdc6979cba68da419d82ccd408d0"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/jshufro/home_assistant_noaa_tides","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jshufro%2Fhome_assistant_noaa_tides","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jshufro%2Fhome_assistant_noaa_tides/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jshufro%2Fhome_assistant_noaa_tides/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jshufro%2Fhome_assistant_noaa_tides/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jshufro","download_url":"https://codeload.github.com/jshufro/home_assistant_noaa_tides/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jshufro%2Fhome_assistant_noaa_tides/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28730300,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T10:24:43.181Z","status":"ssl_error","status_checked_at":"2026-01-24T10:24:36.112Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["beaches","home-assistant","lovelace-ui","tides","tidesandcurrents"],"created_at":"2026-01-24T14:49:31.071Z","updated_at":"2026-01-24T14:49:31.638Z","avatar_url":"https://github.com/jshufro.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NOAA Tides and Currents Sensor for Home-Assistant\n\nThis library is a [fork of the core component](https://www.home-assistant.io/integrations/noaa_tides/) which adds some additional features and migrates the backend from the now-defunct [py_noaa](https://github.com/GClunies/py_noaa) to the superseding [noaa_coops](https://github.com/GClunies/noaa_coops).\n\n## Installation\n\n1. Clone the repository.\n2. Copy the `noaa_tides` directory into `\u003chome assistant directory\u003e/custom_components/`\n3. Configure a sensor in configuration.yaml\n\n## Sample configuration\n\n``` yaml\nsensor:\n  - platform: noaa_tides\n    name: tides           # Useful when more than one sensor is used. Otherwise a name is generated.\n    station_id: 8512354   # A station ID from https://tidesandcurrents.noaa.gov/\n    type: tides           # This station will be used to measure water level\n    scan_interval: 360    # Polling interval for the NOAA API\n\n  - platform: noaa_tides\n    station_id: 8510560\n    type: temp            # This station will be used to measure water temperature\n    name: water_temp\n    scan_interval: 360\n\n  - platform: noaa_tides\n    name: buoy\n    type: buoy            # This station will be used for off-shore Buoy data\n    station_id: 44017     # A buoy ID from https://www.ndbc.noaa.gov/\n    scan_interval: 360\n```\n\nDifferent stations support different features (products/datums), so use the [station finder](https://tidesandcurrents.noaa.gov/) to select the right station for `tides` vs `temp` types.\n\nFor complex lovelace widgets, it is suggested to use the [template platform](https://www.home-assistant.io/integrations/template/).\n\nSample template sensor:\n``` yaml\n        next_tide:\n            friendly_name: \"Next tide\"\n            entity_id: sensor.tides\n            value_template: \"{{ state_attr('sensor.tides', 'next_tide_type') }} tide at {{ state_attr('sensor.tides', 'next_tide_time') }}\"\n            icon_template: \"{% if is_state_attr('sensor.tides', 'next_tide_type', 'High') %}mdi:waves{% else %}mdi:wave{% endif %}\"\n        last_tide:\n            friendly_name: \"Last tide\"\n            entity_id: sensor.tides\n            value_template: \"{{ state_attr('sensor.tides', 'last_tide_type') }} tide at {{ state_attr('sensor.tides', 'last_tide_time') }}\"\n            icon_template: \"{% if is_state_attr('sensor.tides', 'last_tide_type', 'High') %}mdi:waves{% else %}mdi:wave{% endif %}\"\n        water_level:\n            friendly_name: \"Water level\"\n            entity_id: sensor.internet_time\n            value_template: \"{{ state_attr('sensor.tides', 'tide_factor') }}\"\n            unit_of_measurement: '%'\n        beach_air_temp:\n            friendly_name: \"Air temperature\"\n            entity_id: sensor.water_temp\n            value_template: \"{{ state_attr('sensor.water_temp', 'air_temperature') }}\"\n\n```\n\nNote that the tide curve requires `sensor.internet_time` to be updated correctly. Use the `time_date` sensor platform like this:\n\n``` yaml\n  - platform: time_date\n    display_options:\n      - 'beat'\n```\n\nI'm also using the [custom mini-graph card](https://github.com/kalkih/mini-graph-card) with the following lovelace configuration:\n``` yaml\n          - entities:\n              - color: '#02ace5'\n                entity: sensor.beach_air_temp\n                name: Air\n                show_state: true\n                state_adaptive_color: true\n              - color: darkblue\n                entity: sensor.water_temp\n                name: Water\n                show_state: true\n                state_adaptive_color: true\n            hours_to_show: 24\n            name: Air and Water Temperatures\n            points_per_hour: 12\n            show:\n              fill: false\n            type: 'custom:mini-graph-card'\n            unit: °F\n          - entities:\n              - entity: sensor.next_tide\n              - entity: sensor.last_tide\n            footer:\n              entities:\n                - sensor.water_level\n              hours_to_show: 12\n              icon: 'mdi:swim'\n              line_color: darkblue\n              lower_bound: 0\n              points_per_hour: 60\n              show:\n                labels: false\n              type: 'custom:mini-graph-card'\n              upper_bound: 100\n            title: Tides\n            type: entities\n```\n\nWhich looks like this:\n\n![Lovelace Configuration](/noaa_tides_lovelace.png)\n\n## Support\n\nFor setup and other support questions, see the [Home Assistant community discussion for this add-on](https://community.home-assistant.io/t/i-made-an-improved-noaa-tides-sensor-for-my-familys-summer-house/203466).\n\n## Contributing\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n\n## License\n[MIT](https://choosealicense.com/licenses/mit/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjshufro%2Fhome_assistant_noaa_tides","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjshufro%2Fhome_assistant_noaa_tides","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjshufro%2Fhome_assistant_noaa_tides/lists"}