Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 Homebridge

You 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).