├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── stale_issues.yml ├── .gitignore ├── .jshintrc ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── examples.md ├── get_cookie.md ├── lib ├── alexa-remote-ext.js ├── color-convert.js ├── common.js ├── delta-e.js └── known-color-values.js ├── nodes ├── alexa-remote-account.html ├── alexa-remote-account.js ├── alexa-remote-echo.html ├── alexa-remote-echo.js ├── alexa-remote-event.html ├── alexa-remote-event.js ├── alexa-remote-init.html ├── alexa-remote-init.js ├── alexa-remote-list.html ├── alexa-remote-list.js ├── alexa-remote-other.html ├── alexa-remote-other.js ├── alexa-remote-routine.html ├── alexa-remote-routine.js ├── alexa-remote-smarthome.html ├── alexa-remote-smarthome.js ├── icons │ ├── alexa-remote-icon.png │ └── alexa-remote-list.png └── markdown │ ├── account.md │ ├── echo.md │ ├── event.md │ ├── init.md │ ├── other.md │ ├── routine.md │ └── smarthome.md └── package.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/stale_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/.github/workflows/stale_issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esversion": 8 3 | } -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/README.md -------------------------------------------------------------------------------- /examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/examples.md -------------------------------------------------------------------------------- /get_cookie.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/get_cookie.md -------------------------------------------------------------------------------- /lib/alexa-remote-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/lib/alexa-remote-ext.js -------------------------------------------------------------------------------- /lib/color-convert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/lib/color-convert.js -------------------------------------------------------------------------------- /lib/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/lib/common.js -------------------------------------------------------------------------------- /lib/delta-e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/lib/delta-e.js -------------------------------------------------------------------------------- /lib/known-color-values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/lib/known-color-values.js -------------------------------------------------------------------------------- /nodes/alexa-remote-account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-account.html -------------------------------------------------------------------------------- /nodes/alexa-remote-account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-account.js -------------------------------------------------------------------------------- /nodes/alexa-remote-echo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-echo.html -------------------------------------------------------------------------------- /nodes/alexa-remote-echo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-echo.js -------------------------------------------------------------------------------- /nodes/alexa-remote-event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-event.html -------------------------------------------------------------------------------- /nodes/alexa-remote-event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-event.js -------------------------------------------------------------------------------- /nodes/alexa-remote-init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-init.html -------------------------------------------------------------------------------- /nodes/alexa-remote-init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-init.js -------------------------------------------------------------------------------- /nodes/alexa-remote-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-list.html -------------------------------------------------------------------------------- /nodes/alexa-remote-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-list.js -------------------------------------------------------------------------------- /nodes/alexa-remote-other.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-other.html -------------------------------------------------------------------------------- /nodes/alexa-remote-other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-other.js -------------------------------------------------------------------------------- /nodes/alexa-remote-routine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-routine.html -------------------------------------------------------------------------------- /nodes/alexa-remote-routine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-routine.js -------------------------------------------------------------------------------- /nodes/alexa-remote-smarthome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-smarthome.html -------------------------------------------------------------------------------- /nodes/alexa-remote-smarthome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/alexa-remote-smarthome.js -------------------------------------------------------------------------------- /nodes/icons/alexa-remote-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/icons/alexa-remote-icon.png -------------------------------------------------------------------------------- /nodes/icons/alexa-remote-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/icons/alexa-remote-list.png -------------------------------------------------------------------------------- /nodes/markdown/account.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/markdown/account.md -------------------------------------------------------------------------------- /nodes/markdown/echo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/markdown/echo.md -------------------------------------------------------------------------------- /nodes/markdown/event.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/markdown/event.md -------------------------------------------------------------------------------- /nodes/markdown/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/markdown/init.md -------------------------------------------------------------------------------- /nodes/markdown/other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/markdown/other.md -------------------------------------------------------------------------------- /nodes/markdown/routine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/markdown/routine.md -------------------------------------------------------------------------------- /nodes/markdown/smarthome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/nodes/markdown/smarthome.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbindreiter/node-red-contrib-alexa-remote2-applestrudel/HEAD/package.json --------------------------------------------------------------------------------