Skip to content

Commit 2f21c9b

Browse files
committed
Add release blog post
1 parent 2dbf753 commit 2f21c9b

10 files changed

+575
-5
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: page
3+
title: "eQ-3 MAX! Cube binary sensors"
4+
description: "Instructions on how to integrate eQ-3 MAX! components with Home Assistant via eQ-3 MAX! Cube."
5+
date: 2017-02-04 22:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: maxcube.png
11+
ha_category: Climate
12+
ha_release: "0.40"
13+
ha_iot_class: "Local Polling"
14+
---
15+
16+
See instructions at the [main component](/components/maxcube/).
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: page
3+
title: "eQ-3 MAX! Cube binary sensors"
4+
description: "Instructions on how to integrate eQ-3 MAX! components with Home Assistant via eQ-3 MAX! Cube."
5+
date: 2017-02-04 22:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
logo: maxcube.png
11+
ha_category: Climate
12+
ha_release: "0.40"
13+
ha_iot_class: "Local Polling"
14+
---
15+
16+
See instructions at the [main component](/components/maxcube/).

source/_components/image_processing.opencv.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar: true
77
comments: false
88
sharing: true
99
footer: true
10-
logo: OpenCV_Logo.png
10+
logo: opencv.png
1111
ha_category: Image Processing
1212
featured: false
1313
ha_release: 0.44

source/_components/opencv.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar: true
77
comments: false
88
sharing: true
99
footer: true
10-
logo: OpenCV_Logo.png
10+
logo: opencv.png
1111
ha_category: Hub
1212
ha_release: 0.44
1313
ha_iot_class: "Local Push"

source/_components/plant.markdown

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
---
2+
layout: page
3+
title: "Plant Observer"
4+
description: "Automation component to observe the status of your plants."
5+
date: 2017-05-06 08:00
6+
sidebar: true
7+
comments: false
8+
sharing: true
9+
footer: true
10+
ha_category: Other
11+
ha_release: 0.44
12+
---
13+
14+
```yaml
15+
plant:
16+
simulated_plant:
17+
sensors:
18+
moisture: sensor.mqtt_plant_moisture
19+
battery: sensor.mqtt_plant_battery
20+
temperature: sensor.mqtt_plant_temperature
21+
conductivity: sensor.mqtt_plant_conductivity
22+
brightness: sensor.mqtt_plant_brightness
23+
min_moisture: 20
24+
max_moisture: 60
25+
min_battery: 17
26+
min_conductivity: 500
27+
min_temperature: 15
28+
```
29+
30+
## Using plain MQTT sensor to get the data
31+
32+
```yaml
33+
sensor:
34+
- platform: mqtt
35+
name: mqtt_plant_moisture
36+
state_topic: test/simulated_plant
37+
value_template: '{{ value_json.moisture }}'
38+
- platform: mqtt
39+
name: mqtt_plant_battery
40+
state_topic: test/simulated_plant
41+
value_template: '{{ value_json.battery }}'
42+
- platform: mqtt
43+
name: mqtt_plant_temperature
44+
state_topic: test/simulated_plant
45+
value_template: '{{ value_json.temperature }}'
46+
- platform: mqtt
47+
name: mqtt_plant_conductivity
48+
state_topic: test/simulated_plant
49+
value_template: '{{ value_json.conductivity }}'
50+
- platform: mqtt
51+
name: mqtt_plant_brightness
52+
state_topic: test/simulated_plant
53+
value_template: '{{ value_json.brightness }}'
54+
```

source/_components/sensor.ios.markdown

Whitespace-only changes.

source/_posts/2017-04-22-ikea-tradfri--spotify.markdown

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,6 @@ Experiencing issues introduced by this release? Please report them in our [issue
486486
[wemo docs]: /components/wemo/
487487
[zwave docs]: /components/zwave/
488488
[zwave.node_entity docs]: /components/zwave.node_entity/
489-
<<<<<<< HEAD
490-
=======
491489
[forum]: https://community.home-assistant.io/
492490
[gitter]: https://gitter.im/home-assistant/home-assistant
493491
[issue]: https://github.com/home-assistant/home-assistant/issues
@@ -521,4 +519,3 @@ Experiencing issues introduced by this release? Please report them in our [issue
521519
[notify.html5 docs]: https://home-assistant.io/components/notify.html5/
522520
[notify.telegram docs]: https://home-assistant.io/components/notify.telegram/
523521
[telegram_bot.polling docs]: https://home-assistant.io/components/telegram_bot.polling/
524-
>>>>>>> current

source/_posts/2017-05-06-zigbee-opencv-dlib.markdown

Lines changed: 487 additions & 0 deletions
Large diffs are not rendered by default.
32.6 KB
Loading
2.31 KB
Loading

0 commit comments

Comments
 (0)