├── .gitignore ├── .htaccess ├── LICENSE ├── README.md ├── Sample Windows Task Scheduler file.xml ├── TCP documents ├── Quick Start Guide.pdf └── Remote Lighting Kit.pdf ├── api.php ├── config.inc.php ├── createDevice.php ├── css ├── favicons │ ├── android-chrome-192x192.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── manifest.json │ ├── mstile-150x150.png │ └── safari-pinned-tab.svg ├── grey_wash_wall.png ├── images │ ├── IFTTTAppletPhrase.png │ ├── Ui-icons_222222_256x240.png │ ├── genericbulbicon.png │ ├── genericbulbicon.psd │ ├── genericmultibulbicon.png │ ├── info.png │ ├── remote.png │ ├── scene │ │ ├── away.png │ │ ├── bolt.png │ │ ├── clock.png │ │ ├── coffee.png │ │ ├── dim.png │ │ ├── e_car.png │ │ ├── eat.png │ │ ├── fan_cool.png │ │ ├── fan_heat.png │ │ ├── heart.png │ │ ├── home.png │ │ ├── lamp.png │ │ ├── light.png │ │ ├── music.png │ │ ├── night.png │ │ ├── off_to_work.png │ │ ├── rainy.png │ │ ├── sensor.png │ │ ├── star.png │ │ ├── target.png │ │ ├── thermostat.png │ │ ├── tree.png │ │ ├── tv.png │ │ ├── vacation.png │ │ ├── washing_machine.png │ │ ├── zroom_00.png │ │ ├── zroom_01.png │ │ ├── zroom_02.png │ │ ├── zroom_03.png │ │ ├── zroom_04.png │ │ ├── zroom_05.png │ │ ├── zroom_06.png │ │ ├── zroom_07.png │ │ ├── zroom_08.png │ │ └── zroom_09.png │ ├── syncgateway.png │ ├── ui-bg_flat_75_ffffff_40x100.png │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_glass_75_dadada_1x400.png │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ └── ui-icons_454545_256x240.png ├── jquery-ui.min.css ├── style.css └── unplugged.png ├── discoverBulbs.php ├── include.php ├── index.php ├── info.php ├── js ├── libs.js └── scripts.js ├── queryBuilder.php ├── runSchedule.bat ├── runSchedule.php ├── scenescreatedit.php ├── scheduler.php ├── setDateTime.php └── viewLogs.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/.htaccess -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/README.md -------------------------------------------------------------------------------- /Sample Windows Task Scheduler file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/Sample Windows Task Scheduler file.xml -------------------------------------------------------------------------------- /TCP documents/Quick Start Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/TCP documents/Quick Start Guide.pdf -------------------------------------------------------------------------------- /TCP documents/Remote Lighting Kit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/TCP documents/Remote Lighting Kit.pdf -------------------------------------------------------------------------------- /api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/api.php -------------------------------------------------------------------------------- /config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/config.inc.php -------------------------------------------------------------------------------- /createDevice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/createDevice.php -------------------------------------------------------------------------------- /css/favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /css/favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /css/favicons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/browserconfig.xml -------------------------------------------------------------------------------- /css/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /css/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /css/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/favicon.ico -------------------------------------------------------------------------------- /css/favicons/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/manifest.json -------------------------------------------------------------------------------- /css/favicons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/mstile-150x150.png -------------------------------------------------------------------------------- /css/favicons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/favicons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /css/grey_wash_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/grey_wash_wall.png -------------------------------------------------------------------------------- /css/images/IFTTTAppletPhrase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/IFTTTAppletPhrase.png -------------------------------------------------------------------------------- /css/images/Ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/Ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /css/images/genericbulbicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/genericbulbicon.png -------------------------------------------------------------------------------- /css/images/genericbulbicon.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/genericbulbicon.psd -------------------------------------------------------------------------------- /css/images/genericmultibulbicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/genericmultibulbicon.png -------------------------------------------------------------------------------- /css/images/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/info.png -------------------------------------------------------------------------------- /css/images/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/remote.png -------------------------------------------------------------------------------- /css/images/scene/away.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/away.png -------------------------------------------------------------------------------- /css/images/scene/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/bolt.png -------------------------------------------------------------------------------- /css/images/scene/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/clock.png -------------------------------------------------------------------------------- /css/images/scene/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/coffee.png -------------------------------------------------------------------------------- /css/images/scene/dim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/dim.png -------------------------------------------------------------------------------- /css/images/scene/e_car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/e_car.png -------------------------------------------------------------------------------- /css/images/scene/eat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/eat.png -------------------------------------------------------------------------------- /css/images/scene/fan_cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/fan_cool.png -------------------------------------------------------------------------------- /css/images/scene/fan_heat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/fan_heat.png -------------------------------------------------------------------------------- /css/images/scene/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/heart.png -------------------------------------------------------------------------------- /css/images/scene/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/home.png -------------------------------------------------------------------------------- /css/images/scene/lamp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/lamp.png -------------------------------------------------------------------------------- /css/images/scene/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/light.png -------------------------------------------------------------------------------- /css/images/scene/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/music.png -------------------------------------------------------------------------------- /css/images/scene/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/night.png -------------------------------------------------------------------------------- /css/images/scene/off_to_work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/off_to_work.png -------------------------------------------------------------------------------- /css/images/scene/rainy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/rainy.png -------------------------------------------------------------------------------- /css/images/scene/sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/sensor.png -------------------------------------------------------------------------------- /css/images/scene/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/star.png -------------------------------------------------------------------------------- /css/images/scene/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/target.png -------------------------------------------------------------------------------- /css/images/scene/thermostat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/thermostat.png -------------------------------------------------------------------------------- /css/images/scene/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/tree.png -------------------------------------------------------------------------------- /css/images/scene/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/tv.png -------------------------------------------------------------------------------- /css/images/scene/vacation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/vacation.png -------------------------------------------------------------------------------- /css/images/scene/washing_machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/washing_machine.png -------------------------------------------------------------------------------- /css/images/scene/zroom_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_00.png -------------------------------------------------------------------------------- /css/images/scene/zroom_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_01.png -------------------------------------------------------------------------------- /css/images/scene/zroom_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_02.png -------------------------------------------------------------------------------- /css/images/scene/zroom_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_03.png -------------------------------------------------------------------------------- /css/images/scene/zroom_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_04.png -------------------------------------------------------------------------------- /css/images/scene/zroom_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_05.png -------------------------------------------------------------------------------- /css/images/scene/zroom_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_06.png -------------------------------------------------------------------------------- /css/images/scene/zroom_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_07.png -------------------------------------------------------------------------------- /css/images/scene/zroom_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_08.png -------------------------------------------------------------------------------- /css/images/scene/zroom_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/scene/zroom_09.png -------------------------------------------------------------------------------- /css/images/syncgateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/syncgateway.png -------------------------------------------------------------------------------- /css/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /css/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /css/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /css/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/jquery-ui.min.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/style.css -------------------------------------------------------------------------------- /css/unplugged.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/css/unplugged.png -------------------------------------------------------------------------------- /discoverBulbs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/discoverBulbs.php -------------------------------------------------------------------------------- /include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/include.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/index.php -------------------------------------------------------------------------------- /info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/info.php -------------------------------------------------------------------------------- /js/libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/js/libs.js -------------------------------------------------------------------------------- /js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/js/scripts.js -------------------------------------------------------------------------------- /queryBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/queryBuilder.php -------------------------------------------------------------------------------- /runSchedule.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/runSchedule.bat -------------------------------------------------------------------------------- /runSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/runSchedule.php -------------------------------------------------------------------------------- /scenescreatedit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/scenescreatedit.php -------------------------------------------------------------------------------- /scheduler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/scheduler.php -------------------------------------------------------------------------------- /setDateTime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/setDateTime.php -------------------------------------------------------------------------------- /viewLogs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bren1818/TCPLightingWebInterface/HEAD/viewLogs.php --------------------------------------------------------------------------------