From 8bad45a3dfc754b862f2d03d7d206b81f1f77627 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Fri, 1 Feb 2019 23:52:33 +0200 Subject: [PATCH] Add Huawei LTE Notify docs (#7934) * Add Huawei LTE Notify docs * Use recipient instead of target in config * Bump HA release to 0.88 --- source/_components/notify.huawei_lte.markdown | 46 +++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 source/_components/notify.huawei_lte.markdown diff --git a/source/_components/notify.huawei_lte.markdown b/source/_components/notify.huawei_lte.markdown new file mode 100644 index 00000000000..1baf01ca9a7 --- /dev/null +++ b/source/_components/notify.huawei_lte.markdown @@ -0,0 +1,46 @@ +--- +layout: page +title: "Huawei LTE Notify" +description: "Instructions on how to add Huawei LTE notifications to Home Assistant." +date: 2018-12-23 17:00 +sidebar: true +comments: false +sharing: true +footer: true +logo: huawei.svg +ha_category: Notifications +ha_release: 0.88 +--- + +The `huawei_lte` platform allows you to use a Huawei LTE router for +notifications from Home Assistant. The messages will be sent as SMS +text messages. + +This requires you to have set up the +[Huawei LTE component](/components/huawei_lte/). + +```yaml +# Example configuration.yaml entry +notify: + - platform: huawei_lte + recipient: "+15105550123" +``` + +{% configuration %} +recipient: + description: The phone number of a default recipient or a list with multiple recipients. + required: true + type: string, list +name: + description: Setting the optional parameter `name` allows multiple notifiers to be created. The notifier will bind to the service `notify.NOTIFIER_NAME`. + required: false + default: notify + type: string +url: + description: The router to use. Not needed if you only have one. + required: false + type: url +{% endconfiguration %} + +To use notifications, please see the +[getting started with automation page](/getting-started/automation/).