All Projects → ptz0n → homebridge-verisure

ptz0n / homebridge-verisure

Licence: MIT License
 Platform plugin for Homebridge allowing to manage and control Verisure devices.

Programming Languages

javascript
184084 projects - #8 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to homebridge-verisure

homebridge-freeathome
Platform Plugin to manage free@home accessories via HomeBridge
Stars: ✭ 50 (+19.05%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-mi-robot vacuum
XiaoMi robot vacuum plugins for HomeBridge.
Stars: ✭ 53 (+26.19%)
Mutual labels:  homebridge, homebridge-plugin
HomeKit-Bridge
Enabled HomeKit integration via Homebridge for Indigo Home Automation
Stars: ✭ 43 (+2.38%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-tion
Homebridge plugin to control Tion breezers
Stars: ✭ 32 (-23.81%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-tydom
Homebridge plugin to manage Tydom hardware by Delta Dore from Apple HomeKit.
Stars: ✭ 38 (-9.52%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-blinds-cmd
🌅 Homebridge plugin to enable window blinds to be controlled by executing a command line.
Stars: ✭ 14 (-66.67%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-daikin-airbase
A Homebridge plugin for the Daikin Airbase WiFi module
Stars: ✭ 14 (-66.67%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-mi-pm2 5
XiaoMi PM2.5 sensor plugin for HomeBridge.
Stars: ✭ 15 (-64.29%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-synology
Control your Synology Diskstation with Homekit
Stars: ✭ 135 (+221.43%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-yeelight-platform
Homebridge plugin for Yeelight Lights supporting Scenes/Moods/Color Flow/Custom Presets/Music Flow/Night Mode
Stars: ✭ 53 (+26.19%)
Mutual labels:  homebridge, homebridge-plugin
awesome-homebridge
Popular list of Homebridge Plugins
Stars: ✭ 106 (+152.38%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-ranger
A HomeKit range extender for Bluetooth Low Energy (BLE) accessories.
Stars: ✭ 65 (+54.76%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-securitysystem
Homebridge plugin that creates a security system accessory that can be triggered by HomeKit sensors.
Stars: ✭ 114 (+171.43%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-homeconnect
Home Connect home appliances plugin for Homebridge
Stars: ✭ 70 (+66.67%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-lifx-lan
LiFx LAN platform plugin for Homebridge
Stars: ✭ 83 (+97.62%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-wink3
Homebridge plugin for wink.com
Stars: ✭ 53 (+26.19%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-logi-circle-controls
Homebridge plugin for extended Logitech Circle camera controls
Stars: ✭ 20 (-52.38%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-simplisafe3
A complete Homebridge plugin for SimpliSafe 3.
Stars: ✭ 82 (+95.24%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-honeywell-home
The Homebridge Honeywell Home plugin allows you to access your Honeywell Home thermostat from HomeKit.
Stars: ✭ 26 (-38.1%)
Mutual labels:  homebridge, homebridge-plugin
homebridge-google-nest-sdm
A Homebridge plugin for Google Nest devices that uses the Google Smart Device Management API. Supports Cameras, Doorbells, Displays, and Thermostats.
Stars: ✭ 16 (-61.9%)
Mutual labels:  homebridge, homebridge-plugin

homebridge-verisure

Verified by Homebridge

Synk badge

GitHub Actions badge

This is a plugin for Homebridge. It's an implementation for your Verisure installation and exposes the following devices:

  • Security alarm
  • Climate sensor
  • Magnetic contact
  • Night Control
  • Siren
  • SmartLock
  • SmartPlug
  • Smoke detector
  • Vibration detector

Protect linked devices & accounts

If configured, this plugin will expose your security system and door lock. Please protect you installation from unauthorised access:

  1. Generate a unique pin for your config. Never, ever use the default one.
  2. Lock all devices with access to your installation when not in use.
  3. Remove access from users that no longer need it.
  4. Keep your devices up to date.

Installation

npm install -g homebridge-verisure

Now you can update your configuration file to enable the plugin, see sample snippet below.

Configuration

As part of your configuration, add an object with your Verisure credentials to your array (list) of enabled platform plugins. Example config:

"platforms": [
  {
    "platform" : "verisure",
    "name" : "Verisure",
    "email": "[email protected]",
    "password": "yourT0p5ecre7Passw0rd",
    "token": "vid=topSecretToken",
    "alarmCode": "0000",
    "doorCode": "000000",
    "installations": ["Alias"],
    "pollInterval": 60
  }
]
  • email Required string containing your Verisure account email address.
  • password Required string containing your Verisure account password. Not needed if you use a token.
  • token Required string for accounts with MFA enabled.
  • alarmCode Optional string containing your security system alarm code.
  • doorCode Optional string containing your door lock code.
  • installations Optional array for filtering installations based on Verisure alias. Defaults to []
  • pollInterval Optional integer containing poll interval in seconds. Defaults to 60.

Multi-factor authentication

[Verisure] MFA is enabled for user. Please see README.

In 2021 Verisure started enrolling MFA which requires you to obtain a long lived token. This token is used instead of a password in your config and will need to be renewed yearly. After installing the plugin, run npx homebridge-verisure in your terminal and copy the output values into your config.

$ npx homebridge-verisure
✔ What is your login email? · [email protected]
✔ What is your password? · ********************

 One-time code sent.

✔ What is your one-time code? · FAKE12

 Your config is ready.

{
  "platform": "verisure",
  "name": "Verisure",
  "email": "[email protected]",
  "token": "vid=topSecretToken"
}

Environment variables

For convenience, the following environment variables can be used instead of placing secrets in your config.json.

  • VERISURE_ALARM_CODE
  • VERISURE_DOOR_CODE
  • VERISURE_EMAIL
  • VERISURE_PASSWORD
  • VERISURE_TOKEN
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].