Fix duplicate metadata (#24490)

Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
Stefan 2022-10-10 15:07:51 +02:00 committed by GitHub
parent 116ffd1c7d
commit a17b38f0f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 34 additions and 17 deletions

View File

@ -1,5 +1,6 @@
--- ---
title: Device Automation title: Device Automation
description: Information about the Device Automation plugin.
ha_category: ha_category:
- Automation - Automation
ha_release: 0.7 ha_release: 0.7

View File

@ -1,6 +1,6 @@
--- ---
title: Free Mobile title: Free Mobile
description: Instructions on how to add user notifications to Home Assistant. description: Instructions on how to add Free Mobile SMS notifications to Home Assistant.
ha_category: ha_category:
- Notifications - Notifications
ha_release: 0.11 ha_release: 0.11
@ -11,7 +11,9 @@ ha_platforms:
ha_integration_type: integration ha_integration_type: integration
--- ---
The `free_mobile` platform is using the French mobile operator [Free Mobile](http://mobile.free.fr/) to send SMS to your own cell phone. The `free_mobile` platform uses the French mobile operator [Free Mobile](http://mobile.free.fr/) to send SMS to your own cell phone.
## Prerequisites
Before doing anything, you have to activate the SMS API option in your Free Mobile account (In "Gérer mon compte -> Mes Options"). Activating this option will automatically generate a token which is required in your configuration. Before doing anything, you have to activate the SMS API option in your Free Mobile account (In "Gérer mon compte -> Mes Options"). Activating this option will automatically generate a token which is required in your configuration.
@ -19,13 +21,15 @@ Before doing anything, you have to activate the SMS API option in your Free Mobi
<img src='/images/integrations/free_mobile/token.png' /> <img src='/images/integrations/free_mobile/token.png' />
</p> </p>
This API only send classic SMS and only on the cell phone of the account owner. So you only have to provide a text message in your payload. This API only sends classic SMS messages and only to the cell phone of the account owner. So you only have to provide a text message in your payload.
<div class='note warning'> <div class='note warning'>
If you disable and re-enable the SMS API option, please be sure to update your token in your configuration. If you disable and re-enable the SMS API option, please be sure to update your token in your configuration.
</div> </div>
To enable SMS notifications in your installation, add the following to your `configuration.yaml` file: ## Configuration
To use this notification platform in your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
@ -43,7 +47,7 @@ name:
type: string type: string
default: notify default: notify
username: username:
description: This is the id given by FreeMobile to access to your online account. description: This is the id given by FreeMobile to access your online account.
required: true required: true
type: string type: string
access_token: access_token:

View File

@ -1,6 +1,6 @@
--- ---
title: Elexa Guardian title: Elexa Guardian
description: Instructions on how to integrate SimpliSafe into Home Assistant. description: Instructions on how to integrate Guardian into Home Assistant.
ha_iot_class: Local Polling ha_iot_class: Local Polling
ha_release: '0.111' ha_release: '0.111'
ha_category: ha_category:

View File

@ -1,5 +1,6 @@
--- ---
title: Hardware title: Hardware
description: Instructions on how to setup the Hardware integration
ha_category: ha_category:
- Other - Other
ha_release: 2022.6 ha_release: 2022.6

View File

@ -1,6 +1,6 @@
--- ---
title: LlamaLab Automate title: LlamaLab Automate
description: Instructions on how to add user notifications to Home Assistant. description: Instructions on how to add LlamaLab Automate notifications to Home Assistant.
ha_category: ha_category:
- Notifications - Notifications
ha_iot_class: Cloud Push ha_iot_class: Cloud Push
@ -13,9 +13,13 @@ ha_integration_type: integration
The `llamalab_automate` platform uses Googles Cloud Messaging Services to push messages from Home Assistant to your Android device running the LlamaLab [Automate](https://llamalab.com/automate/) app. This can serve as an alternative to Tasker + AutoRemote. The `llamalab_automate` platform uses Googles Cloud Messaging Services to push messages from Home Assistant to your Android device running the LlamaLab [Automate](https://llamalab.com/automate/) app. This can serve as an alternative to Tasker + AutoRemote.
## Prerequisites
Go to [https://llamalab.com/automate/cloud/](https://llamalab.com/automate/cloud/) and create a new API key/secret. Go to [https://llamalab.com/automate/cloud/](https://llamalab.com/automate/cloud/) and create a new API key/secret.
To add Automate to your installation, add the following to your `configuration.yaml` file: ## Configuration
To use this notification platform in your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry

View File

@ -1,6 +1,6 @@
--- ---
title: MessageBird title: MessageBird
description: Instructions on how to add user notifications to Home Assistant. description: Instructions on how to add MessageBird notifications to Home Assistant.
ha_category: ha_category:
- Notifications - Notifications
ha_iot_class: Cloud Push ha_iot_class: Cloud Push
@ -15,7 +15,7 @@ The `MessageBird` notification platform sends notifications as SMS messages usin
## Setup ## Setup
Go to https://www.messagebird.com/ to retrieve your API key. Go to [MessageBird](https://www.messagebird.com/) to retrieve your API key.
## Configuration ## Configuration

View File

@ -1,6 +1,6 @@
--- ---
title: Twilio Call title: Twilio Call
description: Instructions on how to add user notifications to Home Assistant. description: Instructions on how to add Twilio Call notifications to Home Assistant.
ha_category: ha_category:
- Notifications - Notifications
ha_release: 0.37 ha_release: 0.37
@ -16,6 +16,8 @@ Passed message will be read by Text-To-Speech service.
The requirement is that you have setup [Twilio](/integrations/twilio/). The requirement is that you have setup [Twilio](/integrations/twilio/).
## Configuration
To use this notification platform in your installation, add the following to your `configuration.yaml` file: To use this notification platform in your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
@ -40,7 +42,7 @@ name:
### Usage ### Usage
Twilio is a notify platform and thus can be controlled by calling the notify service [as described here](/integrations/notify/). It will send a notification to all E.164 phone numbers in the notification **target**. See the notes above regarding the `from_number` configuration variable for information about formatting phone numbers. Twilio is a notification platform and thus can be controlled by calling the notify service [as described here](/integrations/notify/). It will send a notification to all E.164 phone numbers in the notification **target**. See the notes above regarding the `from_number` configuration variable for information about formatting phone numbers.
```yaml ```yaml
# Example automation notification entry # Example automation notification entry

View File

@ -1,6 +1,6 @@
--- ---
title: Twilio SMS title: Twilio SMS
description: Instructions on how to add user notifications to Home Assistant. description: Instructions on how to add Twilio SMS notifications to Home Assistant.
ha_category: ha_category:
- Notifications - Notifications
ha_release: '0.20' ha_release: '0.20'
@ -11,10 +11,12 @@ ha_platforms:
ha_integration_type: integration ha_integration_type: integration
--- ---
The `twilio` notification platform enables sending notifications via SMS, powered by [Twilio](https://twilio.com). The `twilio_sms` notification platform enables sending notifications via SMS, powered by [Twilio](https://twilio.com).
The requirement is that you have setup [Twilio](/integrations/twilio/). The requirement is that you have setup [Twilio](/integrations/twilio/).
## Configuration
To use this notification platform in your installation, add the following to your `configuration.yaml` file: To use this notification platform in your installation, add the following to your `configuration.yaml` file:
```yaml ```yaml
@ -39,7 +41,7 @@ name:
### Usage ### Usage
Twilio is a notify platform and thus can be controlled by calling the notify service [as described here](/integrations/notify/). It will send a notification to all E.164 phone numbers in the notification **target**. See the notes above regarding the `from_number` configuration variable for information about formatting phone numbers. It's also possible to use `whatsapp:+123456789` for sending notifications to a Whatsapp user. Twilio is a notification platform and thus can be controlled by calling the notify service [as described here](/integrations/notify/). It will send a notification to all E.164 phone numbers in the notification **target**. See the notes above regarding the `from_number` configuration variable for information about formatting phone numbers. It's also possible to use `whatsapp:+123456789` for sending notifications to a Whatsapp user.
Media can be included with messages by setting the optional `media_url` variable. Only `.gif`, `.png`, or `.jpeg` content are supported, according to the Twilio documentation and this feature is [only supported in the US and Canada.][mms] Media can be included with messages by setting the optional `media_url` variable. Only `.gif`, `.png`, or `.jpeg` content are supported, according to the Twilio documentation and this feature is [only supported in the US and Canada.][mms]

View File

@ -1,11 +1,14 @@
--- ---
ha_release: 0.8
title: Webhook title: Webhook
ha_domain: webhook description: Instructions on how to setup webhook triggers within Home Assistant.
ha_category:
- Automation
ha_release: 0.8
ha_quality_scale: internal ha_quality_scale: internal
ha_category: [] ha_category: []
ha_codeowners: ha_codeowners:
- '@home-assistant/core' - '@home-assistant/core'
ha_domain: webhook
ha_integration_type: integration ha_integration_type: integration
--- ---