Mycroft: update configuration.yaml (#13073)

This commit is contained in:
Tony763 2020-05-07 17:39:26 +02:00 committed by GitHub
parent a0e51da23f
commit 5f88cb50ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,4 +29,30 @@ host:
description: The IP address of your Mycroft instance.
required: true
type: string
{% endconfiguration %}
{% endconfiguration %}
## Using notifications
To use Mycroft for sending notifications, add the following to your `configuration.yaml` file:
```yaml
# Example configuration.yaml entry
notify:
- platform: mycroft
name: mycroft
```
{% configuration %}
name:
description: Frendly name of your Mycroft instance.
required: true
type: string
{% endconfiguration %}
## Examples
Send a mesage to Mycroft by calling `notify.mycroft` service:
```yaml
message: "hey"
```