Skip to content

Commit af4e746

Browse files
Merge pull request home-assistant#2049 from walkerdb/next
add aurora binary sensor docs
2 parents 299f5a1 + 7381c37 commit af4e746

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
layout: page
3+
title: "Aurora sensor"
4+
description: "Know when auroras might be visible at your location"
5+
date: 2017-02-14 10:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
ha_category: Binary Sensor
11+
ha_release: 0.39
12+
---
13+
The `aurora` platform uses the [NOAA aurora forecast](http://www.swpc.noaa.gov/products/aurora-30-minute-forecast) service to let you know if an aurora might be visible at your home location in the next 30 minutes, based off of current solar flare activity.
14+
15+
This service gives a number 0-100 representing the current likelihood of visible auroras at your latitude/longitude. By default this sensor is set up to trigger when the reported likelihood for your location is > 75. It updates every 5 minutes.
16+
17+
You can check the attributes of the sensor to see your exact forecast.
18+
19+
To add the aurora binary sensor to your installation, add the following to your `configuration.yaml` file:
20+
21+
```yaml
22+
# Example configuration.yaml entry
23+
binary_sensor:
24+
- platform: aurora
25+
```
26+
27+
#### Configuration variables:
28+
29+
- **forecast_threshold** (*Optional*): Provide your own threshold number above which the sensor will trigger. Defaults to 75.
30+
31+
```yaml
32+
binary_sensor:
33+
- platform: aurora
34+
forecast_threshold: 50
35+
```

0 commit comments

Comments
 (0)