Add release blog post

This commit is contained in:
Paulus Schoutsen 2017-05-06 13:23:53 -07:00
parent 2dbf75322c
commit 2f21c9b81d
10 changed files with 575 additions and 5 deletions

View file

@ -0,0 +1,16 @@
---
layout: page
title: "eQ-3 MAX! Cube binary sensors"
description: "Instructions on how to integrate eQ-3 MAX! components with Home Assistant via eQ-3 MAX! Cube."
date: 2017-02-04 22:00
sidebar: true
comments: false
sharing: true
footer: true
logo: maxcube.png
ha_category: Climate
ha_release: "0.40"
ha_iot_class: "Local Polling"
---
See instructions at the [main component](/components/maxcube/).

View file

@ -0,0 +1,16 @@
---
layout: page
title: "eQ-3 MAX! Cube binary sensors"
description: "Instructions on how to integrate eQ-3 MAX! components with Home Assistant via eQ-3 MAX! Cube."
date: 2017-02-04 22:00
sidebar: true
comments: false
sharing: true
footer: true
logo: maxcube.png
ha_category: Climate
ha_release: "0.40"
ha_iot_class: "Local Polling"
---
See instructions at the [main component](/components/maxcube/).

View file

@ -7,7 +7,7 @@ sidebar: true
comments: false
sharing: true
footer: true
logo: OpenCV_Logo.png
logo: opencv.png
ha_category: Image Processing
featured: false
ha_release: 0.44

View file

@ -7,7 +7,7 @@ sidebar: true
comments: false
sharing: true
footer: true
logo: OpenCV_Logo.png
logo: opencv.png
ha_category: Hub
ha_release: 0.44
ha_iot_class: "Local Push"

View file

@ -0,0 +1,54 @@
---
layout: page
title: "Plant Observer"
description: "Automation component to observe the status of your plants."
date: 2017-05-06 08:00
sidebar: true
comments: false
sharing: true
footer: true
ha_category: Other
ha_release: 0.44
---
```yaml
plant:
simulated_plant:
sensors:
moisture: sensor.mqtt_plant_moisture
battery: sensor.mqtt_plant_battery
temperature: sensor.mqtt_plant_temperature
conductivity: sensor.mqtt_plant_conductivity
brightness: sensor.mqtt_plant_brightness
min_moisture: 20
max_moisture: 60
min_battery: 17
min_conductivity: 500
min_temperature: 15
```
## Using plain MQTT sensor to get the data
```yaml
sensor:
- platform: mqtt
name: mqtt_plant_moisture
state_topic: test/simulated_plant
value_template: '{{ value_json.moisture }}'
- platform: mqtt
name: mqtt_plant_battery
state_topic: test/simulated_plant
value_template: '{{ value_json.battery }}'
- platform: mqtt
name: mqtt_plant_temperature
state_topic: test/simulated_plant
value_template: '{{ value_json.temperature }}'
- platform: mqtt
name: mqtt_plant_conductivity
state_topic: test/simulated_plant
value_template: '{{ value_json.conductivity }}'
- platform: mqtt
name: mqtt_plant_brightness
state_topic: test/simulated_plant
value_template: '{{ value_json.brightness }}'
```

View file