Skip to content

Commit d55564c

Browse files
committed
Add blog post
1 parent e2a6ff4 commit d55564c

File tree

6 files changed

+484
-4
lines changed

6 files changed

+484
-4
lines changed

_config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ social:
139139

140140
# Home Assistant release details
141141
current_major_version: 0
142-
current_minor_version: 52
143-
current_patch_version: 1
144-
date_released: 2017-08-28
142+
current_minor_version: 53
143+
current_patch_version: 0
144+
date_released: 2017-09-9
145145

146146
# Either # or the anchor link to latest release notes in the blog post.
147147
# Must be prefixed with a # and have double quotes around it.
148148
# Major release:
149-
patch_version_notes: "#release-0521---august-28"
149+
patch_version_notes: "#"
150150
# Minor release (Example #release-0431---april-25):
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
layout: page
3+
title: "Season Sensor"
4+
description: "Instructions how to add season sensors into Home Assistant."
5+
date: 2017-07-04 07:00:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
ha_category: Sensor
11+
ha_iot_class: "Local Polling"
12+
ha_release: 0.53
13+
---
14+
15+
This sensor will display the current astronomical or meteorological season (Spring, Summer, Autumn, Winter) based on the users setting in the config file.
16+
17+
All information about how the seasons work was taken from Wikipedia:
18+
19+
- [https://en.wikipedia.org/wiki/Season#Astronomical](https://en.wikipedia.org/wiki/Season#Astronomical)
20+
- [https://en.wikipedia.org/wiki/Equinox](https://en.wikipedia.org/wiki/Equinox)
21+
- [https://en.wikipedia.org/wiki/Solstice](https://en.wikipedia.org/wiki/Solstice)
22+
23+
24+
```yaml
25+
# Example configuration.yaml entry
26+
sensor:
27+
- platform: season
28+
type: astronomical (optional, will default to astronomical)
29+
```

0 commit comments

Comments
 (0)