Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juanelegomezc/homebridge-prosegur
Prosegur plugin for Homebridge
https://github.com/juanelegomezc/homebridge-prosegur
homebridge homebridge-plugin homekit prosegur
Last synced: 6 days ago
JSON representation
Prosegur plugin for Homebridge
- Host: GitHub
- URL: https://github.com/juanelegomezc/homebridge-prosegur
- Owner: juanelegomezc
- License: apache-2.0
- Created: 2022-07-12T02:08:33.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2025-01-24T12:55:48.000Z (6 days ago)
- Last Synced: 2025-01-24T13:38:00.811Z (6 days ago)
- Topics: homebridge, homebridge-plugin, homekit, prosegur
- Language: TypeScript
- Homepage:
- Size: 138 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# homebridge-prosegur
[![verified-by-homebridge](https://badgen.net/badge/homebridge/verified/purple)](https://github.com/homebridge/homebridge/wiki/Verified-Plugins)
This is a [Verified Homebridge plugin](https://github.com/homebridge/homebridge/wiki/Verified-Plugins) for Prosegur alarms users that allow homeowners to control their security system. The plugin currently supports Prosegur alarms in Colombia, it should also work in Portugal and Spain though it hasn't been tested there.
Video streming support in beta, looking to improve performance in future versions.
To use this plugin, here are three simple steps you need to follow:
1. Run `npm install homebridge-prosegur`
2. Configure the plugin using the [configuration example](#configuration)
3. Restart HomebridgeYou can also search `prosegur` using [HOOBS](https://github.com/mkellsy/homebridge-config-ui) or [Onzu's Homebridge Config UI](https://github.com/oznu/homebridge-config-ui-x). Then proceed to configure the plugin using the included settings in the plugin page.
## Configuration
When configuring this plugin, simply add the platform to your existing `config.json` file. Mind that the `platform` name must always be `Prosegur`.
```json
{
"platforms": [
{
"platform": "Prosegur",
"name": "Alarm Name",
"username": "[email protected]",
"password": "1234567890",
"country": "CO",
"enableVideoCamera": true
},
{
"platform": "...",
"name": "..."
}
]
}
```
**platform:** Prosegur
**name:** Name that will be showed in Homekit.
**username:** The email you use to login to the prosegur web console.
**password:** The password you use to login to the prosegur web console.
**country:** Can be **AR**, **CO**, **ES** or **PT**.
**enableVideoCamera:** Show installed camera?
## Notes
This project has no relationship with Prosegur (unofficial library).
The component uses the API provided by the Web Application.
Has only been tested in Colombia, but should also work in Spain, Portugal and Argentina.
## Credits and Appreciation
Based on the [pyprosegur](https://github.com/dgomes/pyprosegur) library by [@dgomes](https://github.com/dgomes)
Video streaming suppport based on [homebridge-camera-ffmpeg](https://github.com/Sunoo/homebridge-camera-ffmpeg).