Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seven-io/homebridge-sms
SMS plugin for Homebridge
https://github.com/seven-io/homebridge-sms
homebridge homebridge-plugin sms
Last synced: 3 months ago
JSON representation
SMS plugin for Homebridge
- Host: GitHub
- URL: https://github.com/seven-io/homebridge-sms
- Owner: seven-io
- License: mit
- Created: 2021-06-09T13:36:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-30T10:02:09.000Z (3 months ago)
- Last Synced: 2024-10-30T10:46:11.714Z (3 months ago)
- Topics: homebridge, homebridge-plugin, sms
- Language: JavaScript
- Homepage: https://www.seven.io
- Size: 150 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Homebridge plugin to send SMS via [seven.io](https://www.seven.io).
Useful for homekit alarms and sensors. Set an automation to message in case of a water
leak, smoke detection or so.Your **apiKey** can be retrieved
from [Dashboard->Developer](https://app.seven.io/developer)## Installation
1. Install homebridge: `npm i -g homebridge`
2. Install plugin: `npm i -g @seven.io/homebridge-sms`
3. Update `config.json` configuration file### Configuration Example
Example `config.json`:
```json
{
"accessories": [
{
"accessory": "Sms77Sms",
"apiKey": "InsertSuperSecretSms77ApiKey",
"debug": false,
"flash": false,
"foreign_id": null,
"from": "MyBookStore",
"label": null,
"name": "SMS to employees on smoke detection",
"no_reload": false,
"performance_tracking": false,
"text": "Emergency: The smoke detection has triggered!",
"to": [
"+49876543210",
"+490123456789"
],
"ttl": null
}
]
}
```#### Support
Need help? Feel free to [contact us](https://www.seven.io/en/company/contact).
[![MIT](https://img.shields.io/badge/License-MIT-teal.svg)](LICENSE)