gitextract_mihrh1sf/ ├── .esformatter ├── .eslintrc.json ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── stale.yml │ └── workflows/ │ └── nodejs.yml ├── .gitignore ├── .snyk ├── CHANGELOG-app.md ├── CHANGELOG.md ├── README.md ├── appData.json ├── config.schema.json ├── installerManifest.json ├── jsconfig.json ├── package.json ├── platform.schema.json ├── prettierrc ├── smartapps/ │ └── tonesto7/ │ └── homebridge-v2.src/ │ └── homebridge-v2.groovy └── src/ ├── ST_Accessories.js ├── ST_Client.js ├── ST_DeviceCharacteristics.js ├── ST_Platform.js ├── ST_ServiceTypes.js ├── ST_Transforms.js ├── index.js └── libs/ ├── CommunityTypes.js ├── Constants.js ├── HomeKitTypes-Bridge.js ├── HomeKitTypes.js ├── Logger.js └── MyUtils.js