https://github.com/lfasci/homeassistant-metar
A sensor for METAR temperatures. https://en.wikipedia.org/wiki/METAR
https://github.com/lfasci/homeassistant-metar
Last synced: 6 months ago
JSON representation
A sensor for METAR temperatures. https://en.wikipedia.org/wiki/METAR
- Host: GitHub
- URL: https://github.com/lfasci/homeassistant-metar
- Owner: lfasci
- Created: 2019-05-16T06:37:27.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-07-31T05:28:38.000Z (almost 4 years ago)
- Last Synced: 2024-02-15T03:34:57.291Z (about 1 year ago)
- Language: Python
- Size: 6.84 KB
- Stars: 5
- Watchers: 2
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-flying - homeassistant-metar - METAR module for HomeAssistant (Flight planning / Metar & TAF)
README
# homeassistant-metar
A sensor for METAR temperatures. https://en.wikipedia.org/wiki/METAR## Configuration
To enable it, add the following lines to your `configuration.yaml`:
```yaml
# Example configuration.yaml entry
sensor:
- platform: metar
airport_name: Pisa
airport_code: LIRP
monitored_conditions:
- time
- temperature
- wind
- pressure
- visibility
- precipitation
- sky
```### Configuration Variables
- airport_name
(string)(Required) The airport name.
- airport_code
(string)(Required) The *International Civil Aviation Organization*, *ICAO* code for the airport.
- monitored_conditions
(string)(Optional) What to read
It need metar python module.
It's a custom component so it must be downloaded under /custom_components folder.