mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 07:17:14 +00:00
Remove dead components and move anything not actually a component to cookbook
This commit is contained in:
parent
c3a2305c54
commit
d4127bc959
@ -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 %}
|
|
@ -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 %}
|
|
@ -9,6 +9,8 @@ sharing: true
|
|||||||
footer: true
|
footer: true
|
||||||
logo: manything.png
|
logo: manything.png
|
||||||
ha_category: Camera
|
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.
|
[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.
|
||||||
@ -55,7 +57,7 @@ automation:
|
|||||||
|
|
||||||
<p class='img'>
|
<p class='img'>
|
||||||
<img src='/images/components/ifttt/IFTTT_manything_trigger.png' />
|
<img src='/images/components/ifttt/IFTTT_manything_trigger.png' />
|
||||||
You need to setup a unique trigger for each event you sent to IFTTT.
|
You need to setup a unique trigger for each event you sent to IFTTT.
|
||||||
For ManyThing support, you need to set up an `on` and `off` event.
|
For ManyThing support, you need to set up an `on` and `off` event.
|
||||||
</p>
|
</p>
|
||||||
|
|
@ -10,6 +10,8 @@ footer: true
|
|||||||
logo: mqtt.png
|
logo: mqtt.png
|
||||||
ha_category: Notifications
|
ha_category: Notifications
|
||||||
ha_iot_class: depends
|
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.
|
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.
|
||||||
@ -52,16 +54,16 @@ Use as [`script`](/components/script/) in automations.
|
|||||||
{% raw %}
|
{% raw %}
|
||||||
```yaml
|
```yaml
|
||||||
automation:
|
automation:
|
||||||
alias: Send me a message when I get home
|
alias: Send me a message when I get home
|
||||||
trigger:
|
trigger:
|
||||||
platform: state
|
platform: state
|
||||||
entity_id: device_tracker.me
|
entity_id: device_tracker.me
|
||||||
to: 'home'
|
to: 'home'
|
||||||
action:
|
action:
|
||||||
service: script.notify_mqtt
|
service: script.notify_mqtt
|
||||||
data:
|
data:
|
||||||
target: "me"
|
target: "me"
|
||||||
message: "I'm home"
|
message: "I'm home"
|
||||||
|
|
||||||
script:
|
script:
|
||||||
notify_mqtt:
|
notify_mqtt:
|
Loading…
x
Reference in New Issue
Block a user