Remove dead components and move anything not actually a component to cookbook

This commit is contained in:
Robbie Trencheny 2019-03-09 17:23:27 -08:00
parent c3a2305c54
commit d4127bc959
No known key found for this signature in database
GPG Key ID: 1E236BB235BF0021
4 changed files with 11 additions and 94 deletions

View File

@ -1,37 +0,0 @@
---
layout: page
title: "Discoverable"
description: "Instructions on how to setup the discoverable component with Home Assistant."
date: 2016-03-01 07:00
sidebar: true
comments: false
sharing: true
footer: true
---
The Home Assistant discovery protocol is a lightweight feature that introduces support for Home Assistant servers to be discoverable. This will allow [Home Assistant instances](https://github.com/balloob/micropython-home-assistant) running with [MicroPython](https://micropython.org/) to get started without any required configuration (Example from the [MicroPython Home Assistant](https://github.com/balloob/micropython-home-assistant) documentation):
```python
from homeassistant.discovery import get_instance()
hass = get_instance()
for state in hass.states():
print(state)
```
To enable `discovery` in your installation, add the following to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
discoverable:
expose_password: true
```
{% configuration %}
expose_password:
description: It is up to the user to expose the password in the discovery response. If password not exposed, uHA instances will have to provide it (`get_instance('my password')`).
required: false
default: false
type: boolean
{% endconfiguration %}

View File

@ -1,50 +0,0 @@
---
layout: page
title: "Nest Weather Sensor"
description: "Instructions on how to integrate Nest sensors within Home Assistant."
date: 2016-01-13 19:59
sidebar: true
comments: false
sharing: true
footer: true
logo: nest.png
ha_category: Weather
ha_iot_class: "Cloud Polling"
---
<p class='note warning'>
**This platform is currently not available. It's possible that `nest_weather` will be removed in the future.**
</p>
The `nest` weather sensor platform let you monitor current weather conditions based on the location of your [Nest](https://nest.com) thermostat.
<p class='note'>
You must have the [Nest component](/components/nest/) configured to use those sensors.
</p>
To set it up, add the following information to your `configuration.yaml` file:
```yaml
sensor:
- platform: nest
monitored_conditions:
- 'weather_temperature'
```
{% configuration %}
monitored_conditions:
description: States to monitor.
required: true
type: list
keys:
weather_temperature:
description: The current temperture
weather_humidity:
description: The current humidity
weather_condition:
description: The weather conditions
wind_speed:
description: The wind speed
wind_direction:
description: The wind direction
{% endconfiguration %}

View File

@ -9,6 +9,8 @@ sharing: true
footer: true
logo: manything.png
ha_category: Camera
redirect_from:
/components/ifttt.manything/
---
[Manything](https://manything.com) is a smart app that turns your Android device, iPhone, iPod, or iPad into a WiFi camera for monitoring your home, your pets, anything! Comes with live streaming, motion activated alerts, cloud video recording, and more.

View File

@ -10,6 +10,8 @@ footer: true
logo: mqtt.png
ha_category: Notifications
ha_iot_class: depends
redirect_from:
/components/notify.mqtt/
---
The MQTT notification support is different than the other [notification](/components/notify/) platforms. It is a service. This means that you don't have to create a configuration entry but you need to provide more details when calling the service.