├── .gitignore ├── LICENSE ├── README.md ├── dataPointInterfaces ├── default │ ├── gui │ │ └── index.html │ └── index.js ├── emptyExample │ ├── gui │ │ └── index.html │ └── index.js └── invisible │ ├── gui │ └── index.html │ └── index.js ├── hardwareInterfaces ├── arduinoYun │ ├── index.js │ └── package.json ├── empty2Example │ └── index.js ├── emptyExample │ └── index.js ├── kodi │ ├── config.json │ └── index.js ├── mpdClient │ ├── config.json │ └── index.js ├── philipsHue │ ├── config.json │ ├── index.js │ └── package.json └── raspberryPi │ ├── config.json │ └── index.js ├── libraries ├── HybridObjectsHardwareInterfaces.js ├── HybridObjectsUtilities.js ├── HybridObjectsWebFrontend.js ├── objectDefaultFiles │ ├── bird.png │ ├── index.html │ ├── object.css │ └── object.js └── webInterface │ ├── LICENSE_BOOTSTRAP │ ├── LICENSE_DROPZONE │ ├── LICENSE_ZEROCLIPBOARD │ ├── css │ ├── bootstrap-theme.min.css │ └── bootstrap.min.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ └── js │ ├── ZeroClipboard.js │ ├── ZeroClipboard.swf │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── build.js │ ├── dropzone.js │ └── dropzone.js__.js ├── objects └── README.md ├── package.json └── server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/README.md -------------------------------------------------------------------------------- /dataPointInterfaces/default/gui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/dataPointInterfaces/default/gui/index.html -------------------------------------------------------------------------------- /dataPointInterfaces/default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/dataPointInterfaces/default/index.js -------------------------------------------------------------------------------- /dataPointInterfaces/emptyExample/gui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/dataPointInterfaces/emptyExample/gui/index.html -------------------------------------------------------------------------------- /dataPointInterfaces/emptyExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/dataPointInterfaces/emptyExample/index.js -------------------------------------------------------------------------------- /dataPointInterfaces/invisible/gui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/dataPointInterfaces/invisible/gui/index.html -------------------------------------------------------------------------------- /dataPointInterfaces/invisible/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/dataPointInterfaces/invisible/index.js -------------------------------------------------------------------------------- /hardwareInterfaces/arduinoYun/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/arduinoYun/index.js -------------------------------------------------------------------------------- /hardwareInterfaces/arduinoYun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/arduinoYun/package.json -------------------------------------------------------------------------------- /hardwareInterfaces/empty2Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/empty2Example/index.js -------------------------------------------------------------------------------- /hardwareInterfaces/emptyExample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/emptyExample/index.js -------------------------------------------------------------------------------- /hardwareInterfaces/kodi/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/kodi/config.json -------------------------------------------------------------------------------- /hardwareInterfaces/kodi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/kodi/index.js -------------------------------------------------------------------------------- /hardwareInterfaces/mpdClient/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/mpdClient/config.json -------------------------------------------------------------------------------- /hardwareInterfaces/mpdClient/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/mpdClient/index.js -------------------------------------------------------------------------------- /hardwareInterfaces/philipsHue/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/philipsHue/config.json -------------------------------------------------------------------------------- /hardwareInterfaces/philipsHue/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/philipsHue/index.js -------------------------------------------------------------------------------- /hardwareInterfaces/philipsHue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/philipsHue/package.json -------------------------------------------------------------------------------- /hardwareInterfaces/raspberryPi/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/raspberryPi/config.json -------------------------------------------------------------------------------- /hardwareInterfaces/raspberryPi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/hardwareInterfaces/raspberryPi/index.js -------------------------------------------------------------------------------- /libraries/HybridObjectsHardwareInterfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/HybridObjectsHardwareInterfaces.js -------------------------------------------------------------------------------- /libraries/HybridObjectsUtilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/HybridObjectsUtilities.js -------------------------------------------------------------------------------- /libraries/HybridObjectsWebFrontend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/HybridObjectsWebFrontend.js -------------------------------------------------------------------------------- /libraries/objectDefaultFiles/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/objectDefaultFiles/bird.png -------------------------------------------------------------------------------- /libraries/objectDefaultFiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/objectDefaultFiles/index.html -------------------------------------------------------------------------------- /libraries/objectDefaultFiles/object.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/objectDefaultFiles/object.css -------------------------------------------------------------------------------- /libraries/objectDefaultFiles/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/objectDefaultFiles/object.js -------------------------------------------------------------------------------- /libraries/webInterface/LICENSE_BOOTSTRAP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/LICENSE_BOOTSTRAP -------------------------------------------------------------------------------- /libraries/webInterface/LICENSE_DROPZONE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/LICENSE_DROPZONE -------------------------------------------------------------------------------- /libraries/webInterface/LICENSE_ZEROCLIPBOARD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/LICENSE_ZEROCLIPBOARD -------------------------------------------------------------------------------- /libraries/webInterface/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /libraries/webInterface/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/css/bootstrap.min.css -------------------------------------------------------------------------------- /libraries/webInterface/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /libraries/webInterface/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /libraries/webInterface/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /libraries/webInterface/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /libraries/webInterface/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /libraries/webInterface/js/ZeroClipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/js/ZeroClipboard.js -------------------------------------------------------------------------------- /libraries/webInterface/js/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/js/ZeroClipboard.swf -------------------------------------------------------------------------------- /libraries/webInterface/js/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/js/bootstrap-theme.min.css -------------------------------------------------------------------------------- /libraries/webInterface/js/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/js/bootstrap.min.css -------------------------------------------------------------------------------- /libraries/webInterface/js/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/js/build.js -------------------------------------------------------------------------------- /libraries/webInterface/js/dropzone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/js/dropzone.js -------------------------------------------------------------------------------- /libraries/webInterface/js/dropzone.js__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/libraries/webInterface/js/dropzone.js__.js -------------------------------------------------------------------------------- /objects/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openhybrid/object/HEAD/server.js --------------------------------------------------------------------------------