diff --git a/source/_components/notify.free_mobile.markdown b/source/_components/notify.free_mobile.markdown new file mode 100644 index 00000000000..5d022e163d5 --- /dev/null +++ b/source/_components/notify.free_mobile.markdown @@ -0,0 +1,49 @@ +--- +layout: component +title: "Free Mobile" +description: "Instructions how to add user notifications to Home Assistant." +date: 2016-01-12 08:36 +sidebar: true +comments: false +sharing: true +footer: true +logo: free_mobile.png +ha_category: Notifications +featured: true +--- + +[Free Mobile](http://mobile.free.fr/) is a French mobile operator who provide to customers an API to send SMS on their own cell phone. + +### Configuration + +```yaml +# Example configuration.yaml entry +notify: + platform: free_mobile + username: YOUR_ACCOUNT_ID + access_token: TOKEN +``` + +Configuration variables: + +- **username** (*Required*): This is the id given by FreeMobile to access to your online account. +- **access_token** (*Required*): You can get this token by activating the SMS API in your online account. + +### Usage + +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 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. +**Warning** : if you disable and re-enable the SMS API option, please be sure to update your token in your configuration + +#### Example service payload + +```json +{ + "message": "Hello World" +} +``` diff --git a/source/images/components/free_mobile/token.png b/source/images/components/free_mobile/token.png new file mode 100644 index 00000000000..1835849b1c8 Binary files /dev/null and b/source/images/components/free_mobile/token.png differ diff --git a/source/images/supported_brands/free_mobile.png b/source/images/supported_brands/free_mobile.png new file mode 100644 index 00000000000..a8dc3f10f8b Binary files /dev/null and b/source/images/supported_brands/free_mobile.png differ