├── .eslintrc.json ├── .github └── dependabot.yml ├── .gitignore ├── LICENSE ├── README.md ├── icons └── alice.png ├── img └── siple_dev.PNG ├── nodes ├── alice-color.html ├── alice-color.js ├── alice-device.html ├── alice-device.js ├── alice-event.html ├── alice-event.js ├── alice-get.html ├── alice-get.js ├── alice-mode.html ├── alice-mode.js ├── alice-onoff.html ├── alice-onoff.js ├── alice-range.html ├── alice-range.js ├── alice-sensor.html ├── alice-sensor.js ├── alice-togle.html ├── alice-togle.js ├── alice-video.html ├── alice-video.js ├── alice.html ├── alice.js └── icons │ └── alice.png ├── package.json ├── src ├── alice-get.html ├── alice-get.ts ├── alice.html └── alice.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/README.md -------------------------------------------------------------------------------- /icons/alice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/icons/alice.png -------------------------------------------------------------------------------- /img/siple_dev.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/img/siple_dev.PNG -------------------------------------------------------------------------------- /nodes/alice-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-color.html -------------------------------------------------------------------------------- /nodes/alice-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-color.js -------------------------------------------------------------------------------- /nodes/alice-device.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-device.html -------------------------------------------------------------------------------- /nodes/alice-device.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-device.js -------------------------------------------------------------------------------- /nodes/alice-event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-event.html -------------------------------------------------------------------------------- /nodes/alice-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-event.js -------------------------------------------------------------------------------- /nodes/alice-get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-get.html -------------------------------------------------------------------------------- /nodes/alice-get.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-get.js -------------------------------------------------------------------------------- /nodes/alice-mode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-mode.html -------------------------------------------------------------------------------- /nodes/alice-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-mode.js -------------------------------------------------------------------------------- /nodes/alice-onoff.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-onoff.html -------------------------------------------------------------------------------- /nodes/alice-onoff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-onoff.js -------------------------------------------------------------------------------- /nodes/alice-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-range.html -------------------------------------------------------------------------------- /nodes/alice-range.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-range.js -------------------------------------------------------------------------------- /nodes/alice-sensor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-sensor.html -------------------------------------------------------------------------------- /nodes/alice-sensor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-sensor.js -------------------------------------------------------------------------------- /nodes/alice-togle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-togle.html -------------------------------------------------------------------------------- /nodes/alice-togle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-togle.js -------------------------------------------------------------------------------- /nodes/alice-video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-video.html -------------------------------------------------------------------------------- /nodes/alice-video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice-video.js -------------------------------------------------------------------------------- /nodes/alice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice.html -------------------------------------------------------------------------------- /nodes/alice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/alice.js -------------------------------------------------------------------------------- /nodes/icons/alice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/nodes/icons/alice.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/package.json -------------------------------------------------------------------------------- /src/alice-get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/src/alice-get.html -------------------------------------------------------------------------------- /src/alice-get.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/src/alice-get.ts -------------------------------------------------------------------------------- /src/alice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/src/alice.html -------------------------------------------------------------------------------- /src/alice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/src/alice.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/efa2000/node-red-contrib-alice/HEAD/tsconfig.json --------------------------------------------------------------------------------