├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── appengine ├── datastore-to-api │ ├── README.md │ ├── app.yaml │ ├── datastore-to-api.png │ ├── favicon.ico │ ├── index.yaml │ ├── main.py │ └── test_deploy.py ├── phone-to-pubsub │ ├── README.md │ ├── app.yaml │ ├── appengine_config.py │ ├── favicon.ico │ ├── index.yaml │ ├── main.py │ ├── manifest.json │ ├── mobile-app.html │ ├── public │ │ ├── img │ │ │ ├── gcp-header-logo.png │ │ │ └── gcp-header-logo_2x.png │ │ ├── lib │ │ │ ├── material-icons-fonts.css │ │ │ ├── material.indigo-pink.min.css │ │ │ └── material.js │ │ ├── main.css │ │ ├── main.js │ │ └── third_party │ │ │ ├── jquery-knob │ │ │ ├── LICENSE │ │ │ ├── jquery.knob.js │ │ │ ├── jquery.knob.min.js │ │ │ └── knob.js │ │ │ └── underscore │ │ │ ├── LICENSE │ │ │ ├── underscore-min.js │ │ │ └── underscore.js │ ├── pubsub_utils.py │ ├── requirements.txt │ ├── run_local.sh │ └── test_deploy.py ├── pubsub-to-datastore │ ├── README.md │ ├── app.yaml │ ├── favicon.ico │ ├── index.yaml │ ├── main.py │ ├── pubsub-to-datastore.png │ └── test_deploy.py ├── sensordata-to-ui │ ├── README.md │ ├── app.yaml │ ├── favicon.ico │ ├── index.html │ ├── index.yaml │ ├── main.py │ └── public │ │ ├── img │ │ ├── baby-arch.png │ │ ├── gcp-header-logo-2x.png │ │ ├── gcp-iot-demo.png │ │ └── industrial-iot.png │ │ ├── lib │ │ ├── analytics.js │ │ ├── material-icons-fonts.css │ │ ├── material.indigo-pink.min.css │ │ └── material.js │ │ ├── main.css │ │ ├── sensor-data.js │ │ └── third_party │ │ ├── d3 │ │ ├── LICENSE │ │ ├── d3.v3.js │ │ └── d3.v3.min.js │ │ ├── epoch │ │ ├── LICENSE │ │ ├── epoch.js │ │ ├── epoch.min.css │ │ └── epoch.min.js │ │ └── underscore │ │ ├── LICENSE │ │ ├── underscore-min.js │ │ └── underscore.js ├── token-vendor │ ├── README.md │ ├── app.yaml │ ├── appengine_config.py │ ├── datastore_utils.py │ ├── favicon.ico │ ├── index.yaml │ ├── main.py │ ├── test_deploy.py │ └── token_utils.py └── welcome-page │ ├── README.md │ ├── app.yaml │ ├── favicon.ico │ ├── getting-started.html │ ├── index.html │ ├── index.yaml │ ├── main.py │ └── public │ ├── getting-started.js │ ├── img │ ├── bbg-hero-image.jpg │ ├── bbg-hero-image.png │ ├── bbg.png │ ├── cloud-illustration@2x.png │ ├── connection.png │ ├── gcp-header-logo-2x.png │ ├── gcp-header-logo.png │ └── phone.png │ ├── index.js │ ├── lib │ ├── analytics.js │ ├── material-icons.css │ ├── material.indigo-pink.min.css │ ├── material.js │ └── material.pink-green.min.css │ ├── styles.css │ └── third_party │ ├── underscore │ ├── LICENSE │ ├── underscore-min.js │ └── underscore.js │ └── uuid │ ├── LICENSE.md │ └── uuid.js └── onboard-web-server ├── .jscsrc ├── .jshintrc ├── README.md ├── config.json ├── deploy ├── deploy.sh ├── gcp-iot-demo.service └── gcp-iot-demo.socket ├── index.js ├── lib ├── pubsub.js ├── sensor │ ├── accelerometer.js │ ├── button.js │ ├── index.js │ ├── light.js │ ├── pir-motion.js │ ├── rotary-angle.js │ ├── sound.js │ └── temperature.js ├── utils.js └── webserver.js ├── package.json ├── public ├── .jshintrc ├── favicon.ico ├── img │ ├── arrow.png │ ├── bbg-to-pubsub.png │ ├── bbg.png │ ├── bbg_i2c.png │ ├── gcp-demo.png │ ├── gcp-header-logo.png │ ├── icons │ │ ├── accelerometer.png │ │ ├── analog.png │ │ ├── bulb.png │ │ ├── digital.png │ │ ├── sound.png │ │ └── temperature.png │ ├── phone.png │ └── thumbs │ │ ├── ain0.png │ │ ├── ain2.png │ │ ├── button-sensor.png │ │ ├── buzzer.png │ │ ├── gpio115.png │ │ ├── gpio117.png │ │ ├── grove-3axis.png │ │ ├── grove-button.png │ │ ├── grove-encoder.png │ │ ├── grove-light-sensor.png │ │ ├── grove-pir-motion.png │ │ ├── grove-rotary-angle-sensor.png │ │ ├── light-sensor.png │ │ ├── oled.png │ │ ├── relay.png │ │ ├── rgb-led.png │ │ ├── sound-sensor.png │ │ ├── temperature-sensor.png │ │ ├── uart1.png │ │ └── uart4.png ├── index.html ├── lib │ ├── analytics.js │ ├── dialog-polyfill.css │ ├── dialog-polyfill.js │ ├── material-icons-fonts.css │ ├── material.indigo-pink.min.css │ ├── material.js │ └── roboto-fonts.css ├── main.js ├── styles.css └── third_party │ ├── underscore │ ├── LICENSE │ ├── underscore-min.js │ └── underscore.js │ └── vue │ ├── LICENSE │ ├── vue.js │ └── vue.min.js └── test └── node └── unit └── lib ├── sensor ├── accelerometer.test.js └── index.test.js └── utils.test.js /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/README.md -------------------------------------------------------------------------------- /appengine/datastore-to-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/datastore-to-api/README.md -------------------------------------------------------------------------------- /appengine/datastore-to-api/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/datastore-to-api/app.yaml -------------------------------------------------------------------------------- /appengine/datastore-to-api/datastore-to-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/datastore-to-api/datastore-to-api.png -------------------------------------------------------------------------------- /appengine/datastore-to-api/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/datastore-to-api/favicon.ico -------------------------------------------------------------------------------- /appengine/datastore-to-api/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/datastore-to-api/index.yaml -------------------------------------------------------------------------------- /appengine/datastore-to-api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/datastore-to-api/main.py -------------------------------------------------------------------------------- /appengine/datastore-to-api/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/datastore-to-api/test_deploy.py -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/README.md -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/app.yaml -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/appengine_config.py -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/favicon.ico -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/index.yaml -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/main.py -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/manifest.json -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/mobile-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/mobile-app.html -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/img/gcp-header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/img/gcp-header-logo.png -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/img/gcp-header-logo_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/img/gcp-header-logo_2x.png -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/lib/material-icons-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/lib/material-icons-fonts.css -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/lib/material.indigo-pink.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/lib/material.indigo-pink.min.css -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/lib/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/lib/material.js -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/main.css -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/main.js -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/third_party/jquery-knob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/third_party/jquery-knob/LICENSE -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/third_party/jquery-knob/jquery.knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/third_party/jquery-knob/jquery.knob.js -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/third_party/jquery-knob/jquery.knob.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/third_party/jquery-knob/jquery.knob.min.js -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/third_party/jquery-knob/knob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/third_party/jquery-knob/knob.js -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/third_party/underscore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/third_party/underscore/LICENSE -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/third_party/underscore/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/third_party/underscore/underscore-min.js -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/public/third_party/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/public/third_party/underscore/underscore.js -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/pubsub_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/pubsub_utils.py -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/requirements.txt: -------------------------------------------------------------------------------- 1 | google-api-python-client -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/run_local.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/run_local.sh -------------------------------------------------------------------------------- /appengine/phone-to-pubsub/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/phone-to-pubsub/test_deploy.py -------------------------------------------------------------------------------- /appengine/pubsub-to-datastore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/pubsub-to-datastore/README.md -------------------------------------------------------------------------------- /appengine/pubsub-to-datastore/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/pubsub-to-datastore/app.yaml -------------------------------------------------------------------------------- /appengine/pubsub-to-datastore/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/pubsub-to-datastore/favicon.ico -------------------------------------------------------------------------------- /appengine/pubsub-to-datastore/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/pubsub-to-datastore/index.yaml -------------------------------------------------------------------------------- /appengine/pubsub-to-datastore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/pubsub-to-datastore/main.py -------------------------------------------------------------------------------- /appengine/pubsub-to-datastore/pubsub-to-datastore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/pubsub-to-datastore/pubsub-to-datastore.png -------------------------------------------------------------------------------- /appengine/pubsub-to-datastore/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/pubsub-to-datastore/test_deploy.py -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/README.md -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/app.yaml -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/favicon.ico -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/index.html -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/index.yaml -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/main.py -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/img/baby-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/img/baby-arch.png -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/img/gcp-header-logo-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/img/gcp-header-logo-2x.png -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/img/gcp-iot-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/img/gcp-iot-demo.png -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/img/industrial-iot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/img/industrial-iot.png -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/lib/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/lib/analytics.js -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/lib/material-icons-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/lib/material-icons-fonts.css -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/lib/material.indigo-pink.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/lib/material.indigo-pink.min.css -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/lib/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/lib/material.js -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/main.css -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/sensor-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/sensor-data.js -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/d3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/d3/LICENSE -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/d3/d3.v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/d3/d3.v3.js -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/d3/d3.v3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/d3/d3.v3.min.js -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/epoch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/epoch/LICENSE -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/epoch/epoch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/epoch/epoch.js -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/epoch/epoch.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/epoch/epoch.min.css -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/epoch/epoch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/epoch/epoch.min.js -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/underscore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/underscore/LICENSE -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/underscore/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/underscore/underscore-min.js -------------------------------------------------------------------------------- /appengine/sensordata-to-ui/public/third_party/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/sensordata-to-ui/public/third_party/underscore/underscore.js -------------------------------------------------------------------------------- /appengine/token-vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/README.md -------------------------------------------------------------------------------- /appengine/token-vendor/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/app.yaml -------------------------------------------------------------------------------- /appengine/token-vendor/appengine_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/appengine_config.py -------------------------------------------------------------------------------- /appengine/token-vendor/datastore_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/datastore_utils.py -------------------------------------------------------------------------------- /appengine/token-vendor/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/favicon.ico -------------------------------------------------------------------------------- /appengine/token-vendor/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/index.yaml -------------------------------------------------------------------------------- /appengine/token-vendor/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/main.py -------------------------------------------------------------------------------- /appengine/token-vendor/test_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/test_deploy.py -------------------------------------------------------------------------------- /appengine/token-vendor/token_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/token-vendor/token_utils.py -------------------------------------------------------------------------------- /appengine/welcome-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/README.md -------------------------------------------------------------------------------- /appengine/welcome-page/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/app.yaml -------------------------------------------------------------------------------- /appengine/welcome-page/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/favicon.ico -------------------------------------------------------------------------------- /appengine/welcome-page/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/getting-started.html -------------------------------------------------------------------------------- /appengine/welcome-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/index.html -------------------------------------------------------------------------------- /appengine/welcome-page/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/index.yaml -------------------------------------------------------------------------------- /appengine/welcome-page/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/main.py -------------------------------------------------------------------------------- /appengine/welcome-page/public/getting-started.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/getting-started.js -------------------------------------------------------------------------------- /appengine/welcome-page/public/img/bbg-hero-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/img/bbg-hero-image.jpg -------------------------------------------------------------------------------- /appengine/welcome-page/public/img/bbg-hero-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/img/bbg-hero-image.png -------------------------------------------------------------------------------- /appengine/welcome-page/public/img/bbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/img/bbg.png -------------------------------------------------------------------------------- /appengine/welcome-page/public/img/cloud-illustration@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/img/cloud-illustration@2x.png -------------------------------------------------------------------------------- /appengine/welcome-page/public/img/connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/img/connection.png -------------------------------------------------------------------------------- /appengine/welcome-page/public/img/gcp-header-logo-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/img/gcp-header-logo-2x.png -------------------------------------------------------------------------------- /appengine/welcome-page/public/img/gcp-header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/img/gcp-header-logo.png -------------------------------------------------------------------------------- /appengine/welcome-page/public/img/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/img/phone.png -------------------------------------------------------------------------------- /appengine/welcome-page/public/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/index.js -------------------------------------------------------------------------------- /appengine/welcome-page/public/lib/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/lib/analytics.js -------------------------------------------------------------------------------- /appengine/welcome-page/public/lib/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/lib/material-icons.css -------------------------------------------------------------------------------- /appengine/welcome-page/public/lib/material.indigo-pink.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/lib/material.indigo-pink.min.css -------------------------------------------------------------------------------- /appengine/welcome-page/public/lib/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/lib/material.js -------------------------------------------------------------------------------- /appengine/welcome-page/public/lib/material.pink-green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/lib/material.pink-green.min.css -------------------------------------------------------------------------------- /appengine/welcome-page/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/styles.css -------------------------------------------------------------------------------- /appengine/welcome-page/public/third_party/underscore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/third_party/underscore/LICENSE -------------------------------------------------------------------------------- /appengine/welcome-page/public/third_party/underscore/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/third_party/underscore/underscore-min.js -------------------------------------------------------------------------------- /appengine/welcome-page/public/third_party/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/third_party/underscore/underscore.js -------------------------------------------------------------------------------- /appengine/welcome-page/public/third_party/uuid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/third_party/uuid/LICENSE.md -------------------------------------------------------------------------------- /appengine/welcome-page/public/third_party/uuid/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/appengine/welcome-page/public/third_party/uuid/uuid.js -------------------------------------------------------------------------------- /onboard-web-server/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/.jscsrc -------------------------------------------------------------------------------- /onboard-web-server/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/.jshintrc -------------------------------------------------------------------------------- /onboard-web-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/README.md -------------------------------------------------------------------------------- /onboard-web-server/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/config.json -------------------------------------------------------------------------------- /onboard-web-server/deploy/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/deploy/deploy.sh -------------------------------------------------------------------------------- /onboard-web-server/deploy/gcp-iot-demo.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/deploy/gcp-iot-demo.service -------------------------------------------------------------------------------- /onboard-web-server/deploy/gcp-iot-demo.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/deploy/gcp-iot-demo.socket -------------------------------------------------------------------------------- /onboard-web-server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/index.js -------------------------------------------------------------------------------- /onboard-web-server/lib/pubsub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/pubsub.js -------------------------------------------------------------------------------- /onboard-web-server/lib/sensor/accelerometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/sensor/accelerometer.js -------------------------------------------------------------------------------- /onboard-web-server/lib/sensor/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/sensor/button.js -------------------------------------------------------------------------------- /onboard-web-server/lib/sensor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/sensor/index.js -------------------------------------------------------------------------------- /onboard-web-server/lib/sensor/light.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/sensor/light.js -------------------------------------------------------------------------------- /onboard-web-server/lib/sensor/pir-motion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/sensor/pir-motion.js -------------------------------------------------------------------------------- /onboard-web-server/lib/sensor/rotary-angle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/sensor/rotary-angle.js -------------------------------------------------------------------------------- /onboard-web-server/lib/sensor/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/sensor/sound.js -------------------------------------------------------------------------------- /onboard-web-server/lib/sensor/temperature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/sensor/temperature.js -------------------------------------------------------------------------------- /onboard-web-server/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/utils.js -------------------------------------------------------------------------------- /onboard-web-server/lib/webserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/lib/webserver.js -------------------------------------------------------------------------------- /onboard-web-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/package.json -------------------------------------------------------------------------------- /onboard-web-server/public/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/.jshintrc -------------------------------------------------------------------------------- /onboard-web-server/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/favicon.ico -------------------------------------------------------------------------------- /onboard-web-server/public/img/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/arrow.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/bbg-to-pubsub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/bbg-to-pubsub.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/bbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/bbg.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/bbg_i2c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/bbg_i2c.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/gcp-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/gcp-demo.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/gcp-header-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/gcp-header-logo.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/icons/accelerometer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/icons/accelerometer.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/icons/analog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/icons/analog.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/icons/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/icons/bulb.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/icons/digital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/icons/digital.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/icons/sound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/icons/sound.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/icons/temperature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/icons/temperature.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/phone.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/ain0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/ain0.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/ain2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/ain2.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/button-sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/button-sensor.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/buzzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/buzzer.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/gpio115.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/gpio115.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/gpio117.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/gpio117.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/grove-3axis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/grove-3axis.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/grove-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/grove-button.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/grove-encoder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/grove-encoder.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/grove-light-sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/grove-light-sensor.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/grove-pir-motion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/grove-pir-motion.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/grove-rotary-angle-sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/grove-rotary-angle-sensor.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/light-sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/light-sensor.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/oled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/oled.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/relay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/relay.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/rgb-led.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/rgb-led.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/sound-sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/sound-sensor.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/temperature-sensor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/temperature-sensor.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/uart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/uart1.png -------------------------------------------------------------------------------- /onboard-web-server/public/img/thumbs/uart4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/img/thumbs/uart4.png -------------------------------------------------------------------------------- /onboard-web-server/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/index.html -------------------------------------------------------------------------------- /onboard-web-server/public/lib/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/lib/analytics.js -------------------------------------------------------------------------------- /onboard-web-server/public/lib/dialog-polyfill.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/lib/dialog-polyfill.css -------------------------------------------------------------------------------- /onboard-web-server/public/lib/dialog-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/lib/dialog-polyfill.js -------------------------------------------------------------------------------- /onboard-web-server/public/lib/material-icons-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/lib/material-icons-fonts.css -------------------------------------------------------------------------------- /onboard-web-server/public/lib/material.indigo-pink.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/lib/material.indigo-pink.min.css -------------------------------------------------------------------------------- /onboard-web-server/public/lib/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/lib/material.js -------------------------------------------------------------------------------- /onboard-web-server/public/lib/roboto-fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/lib/roboto-fonts.css -------------------------------------------------------------------------------- /onboard-web-server/public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/main.js -------------------------------------------------------------------------------- /onboard-web-server/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/styles.css -------------------------------------------------------------------------------- /onboard-web-server/public/third_party/underscore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/third_party/underscore/LICENSE -------------------------------------------------------------------------------- /onboard-web-server/public/third_party/underscore/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/third_party/underscore/underscore-min.js -------------------------------------------------------------------------------- /onboard-web-server/public/third_party/underscore/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/third_party/underscore/underscore.js -------------------------------------------------------------------------------- /onboard-web-server/public/third_party/vue/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/third_party/vue/LICENSE -------------------------------------------------------------------------------- /onboard-web-server/public/third_party/vue/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/third_party/vue/vue.js -------------------------------------------------------------------------------- /onboard-web-server/public/third_party/vue/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/public/third_party/vue/vue.min.js -------------------------------------------------------------------------------- /onboard-web-server/test/node/unit/lib/sensor/accelerometer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/test/node/unit/lib/sensor/accelerometer.test.js -------------------------------------------------------------------------------- /onboard-web-server/test/node/unit/lib/sensor/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/test/node/unit/lib/sensor/index.test.js -------------------------------------------------------------------------------- /onboard-web-server/test/node/unit/lib/utils.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/IoT-Icebreaker/HEAD/onboard-web-server/test/node/unit/lib/utils.test.js --------------------------------------------------------------------------------