├── .github ├── dependabot.yml └── workflows │ └── Build and Publish.yml ├── .gitignore ├── README.md ├── config.schema-wip.json ├── docs └── yamaha_purple.svg ├── eslint.config.js ├── package.json ├── sampleconfig.json ├── src ├── CachedYamaha.js ├── YamahaAvrAccessory.js ├── YamahaInputService.js ├── YamahaInputService.test.js ├── YamahaParty.js ├── YamahaSpotify.js ├── YamahaSwitch.js ├── YamahaZone.js └── index.js └── test └── hbConfig ├── .uix-secrets └── config.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/Build and Publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/.github/workflows/Build and Publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/README.md -------------------------------------------------------------------------------- /config.schema-wip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/config.schema-wip.json -------------------------------------------------------------------------------- /docs/yamaha_purple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/docs/yamaha_purple.svg -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/package.json -------------------------------------------------------------------------------- /sampleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/sampleconfig.json -------------------------------------------------------------------------------- /src/CachedYamaha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/CachedYamaha.js -------------------------------------------------------------------------------- /src/YamahaAvrAccessory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/YamahaAvrAccessory.js -------------------------------------------------------------------------------- /src/YamahaInputService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/YamahaInputService.js -------------------------------------------------------------------------------- /src/YamahaInputService.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/YamahaInputService.test.js -------------------------------------------------------------------------------- /src/YamahaParty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/YamahaParty.js -------------------------------------------------------------------------------- /src/YamahaSpotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/YamahaSpotify.js -------------------------------------------------------------------------------- /src/YamahaSwitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/YamahaSwitch.js -------------------------------------------------------------------------------- /src/YamahaZone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/YamahaZone.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/src/index.js -------------------------------------------------------------------------------- /test/hbConfig/.uix-secrets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/test/hbConfig/.uix-secrets -------------------------------------------------------------------------------- /test/hbConfig/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NorthernMan54/homebridge-yamaha-home/HEAD/test/hbConfig/config.json --------------------------------------------------------------------------------