├── .github ├── dependabot.yml └── workflows │ ├── main.yml │ └── stale.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── inject_values.json ├── led_manager.json ├── lock_notifications.json ├── scene_manager.json ├── scene_manager_with_entityid.json └── sync_led_brightness_with_smart_bulbs.json ├── multicast ├── README.md ├── lzw30-sn.json ├── lzw31-sn.json ├── lzw36.json └── master_template.json ├── nodes ├── inovelli-led-manager.html ├── inovelli-led-manager.js ├── inovelli-notification-manager.html ├── inovelli-notification-manager.js ├── inovelli-scene-manager.html └── inovelli-scene-manager.js └── package.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/README.md -------------------------------------------------------------------------------- /examples/inject_values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/examples/inject_values.json -------------------------------------------------------------------------------- /examples/led_manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/examples/led_manager.json -------------------------------------------------------------------------------- /examples/lock_notifications.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/examples/lock_notifications.json -------------------------------------------------------------------------------- /examples/scene_manager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/examples/scene_manager.json -------------------------------------------------------------------------------- /examples/scene_manager_with_entityid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/examples/scene_manager_with_entityid.json -------------------------------------------------------------------------------- /examples/sync_led_brightness_with_smart_bulbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/examples/sync_led_brightness_with_smart_bulbs.json -------------------------------------------------------------------------------- /multicast/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/multicast/README.md -------------------------------------------------------------------------------- /multicast/lzw30-sn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/multicast/lzw30-sn.json -------------------------------------------------------------------------------- /multicast/lzw31-sn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/multicast/lzw31-sn.json -------------------------------------------------------------------------------- /multicast/lzw36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/multicast/lzw36.json -------------------------------------------------------------------------------- /multicast/master_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/multicast/master_template.json -------------------------------------------------------------------------------- /nodes/inovelli-led-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/nodes/inovelli-led-manager.html -------------------------------------------------------------------------------- /nodes/inovelli-led-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/nodes/inovelli-led-manager.js -------------------------------------------------------------------------------- /nodes/inovelli-notification-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/nodes/inovelli-notification-manager.html -------------------------------------------------------------------------------- /nodes/inovelli-notification-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/nodes/inovelli-notification-manager.js -------------------------------------------------------------------------------- /nodes/inovelli-scene-manager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/nodes/inovelli-scene-manager.html -------------------------------------------------------------------------------- /nodes/inovelli-scene-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/nodes/inovelli-scene-manager.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanjohnsontv/node-red-contrib-ha-inovelli-manager/HEAD/package.json --------------------------------------------------------------------------------