Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions source/_components/sensor.netatmo_public.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ ha_iot_class: "Cloud Polling"
ha_release: 0.77
---

The `netatmo_public` sensor allows you to expose data from [Netatmo](https://weathermap.netatmo.com/) to Home Assistant, even if you don't have a Netatmo device yourself. Currently, only live rain data is supported.
The `netatmo_public` sensor allows you to expose data from [Netatmo](https://weathermap.netatmo.com/) to Home Assistant, even if you don't have a Netatmo device yourself. Currently the following conditions are supported:

* temperature
* pressure
* humidity
* rain
* windstrength
* guststrength

To enable the Netatmo sensor, you have to set up [netatmo](/components/netatmo/).

Expand All @@ -30,6 +37,13 @@ sensor:
lon_ne: -73.735
lat_sw: 40.552
lon_sw: -74.105
monitored_conditions:
- temperature
- pressure
- humidity
- rain
- windstrength
- guststrength
```

{% configuration %}
Expand All @@ -54,14 +68,18 @@ areas:
description: Longitude of south-western corner of area.
required: true
type: string
monitored_conditions:
description: List of environment conditions to monitor.
required: true
type: list
name:
description: Name of the sensor.
required: false
type: string
default: Netatmo Public Data
type:
mode:
description: "How to calculate the value of the sensor if there are multiple stations reporting data. Accepts `max` or `avg`."
required: false
type: string
default: max
default: avg
{% endconfiguration %}