home-assistant.io/source/_components/sensor.bom.markdown
2017-06-13 19:26:01 +02:00

2.9 KiB

layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class
page BOM Australia Sensor Instructions on how to integrate Bureau of Meteorology Australia weather conditions into Home Assistant. 2016-09-13 18:00 true false true true bom.png Weather 0.29 Cloud Polling

The bom sensor platform uses the Australian Bureau of Meteorology (BOM) as a source for current (half-hourly) meteorological data.

  • Each sensor will be given the device_id of "bom [optionalname] friendlyname units"
  • A name is optional but if multiple BOM weather stations are used a name will be required.
  • The sensor checks for new data every minute, starting 30 minutes after the timestamp of the most recent data as the data is updated every half-hour.

To add the BOM weather observation to your installation, add the following to your configuration.yaml file:

# Example configuration.yaml entry
sensor:
  - platform: bom
    station: IDS60801.94675
    name: Adelaide
    monitored_conditions:
      - apparent_t
      - cloud
      - cloud_base_m
      - cloud_oktas
      - cloud_type_id
      - cloud_type
      - delta_t
      - gust_kmh
      - gust_kt
      - air_temp
      - dewpt
      - press
      - press_qnh
      - press_msl
      - press_tend
      - rain_trace
      - rel_hum
      - sea_state
      - swell_dir_worded
      - swell_height
      - swell_period
      - vis_km
      - weather
      - wind_dir
      - wind_spd_kmh
      - wind_spd_kt

To get the station ID for any BOM station:

Configuration variables:

  • station (Optional): The station ID string as identified from the BOM website. If not given, defaults to the closest station.
  • name (Optional): The name you would like to give to the weather station.
  • monitored_conditions (Required): A list of the conditions to monitor.

This sensor is an alternative to the [`bom`](/components/weather.bom/) weather platform. The weather platform is easier to configure but less customisable.