1.2.4 • Published 4 months ago
@viguza/homebridge-ezviz v1.2.4
Homebridge EZVIZ Plugin
Introduction
This is a Homebridge plugin for integrating EZVIZ devices into HomeKit.
This project is based on the original work by Brandawg93. The idea for this project is to improve and expand upon the original plugin, especially now that it is archived.
Warnings :warning:
- There is no official documentation for the EZVIZ API, so the endpoints used are based on other similar projects. If EZVIZ changes something, this plugin might break.
- I only have a few devices to test, so this won't cover every single EZVIZ device.
- Use it at your own risk.
Installation
Install the Homebridge EZVIZ plugin using npm:
npm install -g @viguza/homebridge-ezviz
Configuration
To configure the plugin, you need to add the following to your Homebridge config.json
file:
{
"platform": "EZVIZ",
"region": 123,
"email": "your-email@example.com",
"password": "your-password",
"cameras": [
{
"name": "Camera 1",
"serial": "camera-serial-number",
"username": "admin",
"code": "verification-code"
}
],
"plugs": [
{
"serial": "plug-serial-number",
"code": "verification-code"
}
]
}