├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ ├── feature-request.md │ └── support-request.md └── workflows │ └── build.yml ├── .gitignore ├── .npmignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── README.md ├── config.schema.json ├── nodemon.json ├── package.json ├── src ├── doorbell-platform-accessory.ts ├── eufy-types.ts ├── ffmpeg.ts ├── index.ts ├── new-streaming-delegate.ts ├── platform.ts └── settings.ts ├── tsconfig.json └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.github/ISSUE_TEMPLATE/support-request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/README.md -------------------------------------------------------------------------------- /config.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/config.schema.json -------------------------------------------------------------------------------- /nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/nodemon.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/package.json -------------------------------------------------------------------------------- /src/doorbell-platform-accessory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/src/doorbell-platform-accessory.ts -------------------------------------------------------------------------------- /src/eufy-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/src/eufy-types.ts -------------------------------------------------------------------------------- /src/ffmpeg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/src/ffmpeg.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/new-streaming-delegate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/src/new-streaming-delegate.ts -------------------------------------------------------------------------------- /src/platform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/src/platform.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/src/settings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/birkir/homebridge-plugin-eufy-security/HEAD/yarn.lock --------------------------------------------------------------------------------