
* Rename Services to Actions in integrations: F * Apply suggestions from code review Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Michael <35783820+mib1185@users.noreply.github.com> --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Michael <35783820+mib1185@users.noreply.github.com>
1.9 KiB
title, description, ha_category, ha_release, ha_iot_class, ha_domain, ha_platforms, ha_integration_type, related
title | description | ha_category | ha_release | ha_iot_class | ha_domain | ha_platforms | ha_integration_type | related | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Free Mobile | Instructions on how to add Free Mobile SMS notifications to Home Assistant. |
|
0.11 | Cloud Push | free_mobile |
|
integration |
|
The free_mobile
{% term integration %} uses the French mobile operator Free Mobile 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.
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.
{% note %} If you disable and re-enable the SMS API option, please be sure to update your token in your configuration. {% endnote %}
Configuration
To use this notification platform in your installation, add the following to your {% term "configuration.yaml
" %} file.
{% include integrations/restart_ha_after_config_inclusion.md %}
# Example configuration.yaml entry
notify:
- name: NOTIFIER_NAME
platform: free_mobile
username: YOUR_ACCOUNT_ID
access_token: TOKEN
{% configuration %}
name:
description: "The optional parameter name allows multiple notifiers to be created. The notifier will bind to the notify.NOTIFIER_NAME
action."
required: false
type: string
default: notify
username:
description: This is the id given by FreeMobile to access your online account.
required: true
type: string
access_token:
description: You can get this token by activating the SMS API in your online account.
required: true
type: string
{% endconfiguration %}