├── Arms.py ├── Database Script.sql ├── README.md ├── __pycache__ ├── armsapi.cpython-38.pyc ├── database.cpython-310.pyc ├── database.cpython-38.pyc ├── person.cpython-310.pyc └── person.cpython-38.pyc ├── database.py ├── person.py ├── requirements.txt ├── static ├── JS │ ├── chart_data.js │ ├── main.js │ └── main.js.bak ├── css │ ├── main.css │ └── util.css ├── fonts │ ├── font-awesome-4.7.0 │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ ├── montserrat │ │ ├── Montserrat-Black.ttf │ │ ├── Montserrat-BlackItalic.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-BoldItalic.ttf │ │ ├── Montserrat-ExtraBold.ttf │ │ ├── Montserrat-ExtraBoldItalic.ttf │ │ ├── Montserrat-ExtraLight.ttf │ │ ├── Montserrat-ExtraLightItalic.ttf │ │ ├── Montserrat-Italic.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-LightItalic.ttf │ │ ├── Montserrat-Medium.ttf │ │ ├── Montserrat-MediumItalic.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-SemiBold.ttf │ │ ├── Montserrat-SemiBoldItalic.ttf │ │ ├── Montserrat-Thin.ttf │ │ ├── Montserrat-ThinItalic.ttf │ │ └── OFL.txt │ └── poppins │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf ├── images │ ├── amanSingh.jpg │ ├── bio-sensor.svg │ ├── ecology.svg │ ├── grass.svg │ ├── humidity.svg │ ├── icons │ │ └── favicon.ico │ ├── img-01.png │ ├── lander.jpg │ ├── mobile.jpg │ ├── temperature.svg │ ├── tree.svg │ └── trees.svg └── vendor │ ├── animate │ └── animate.css │ ├── bootstrap │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── popper.js │ │ ├── popper.min.js │ │ └── tooltip.js │ ├── css-hamburgers │ ├── hamburgers.css │ └── hamburgers.min.css │ ├── jquery │ └── jquery-3.2.1.min.js │ ├── select2 │ ├── select2.css │ ├── select2.js │ ├── select2.min.css │ └── select2.min.js │ └── tilt │ └── tilt.jquery.min.js ├── templates ├── Login.htm ├── api_settings.htm ├── device_dashboard.htm ├── home.htm ├── overview.htm └── profile.htm ├── test.py ├── test2.py └── update.py /Arms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/Arms.py -------------------------------------------------------------------------------- /Database Script.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/Database Script.sql -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/armsapi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/__pycache__/armsapi.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/database.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/__pycache__/database.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/__pycache__/database.cpython-38.pyc -------------------------------------------------------------------------------- /__pycache__/person.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/__pycache__/person.cpython-310.pyc -------------------------------------------------------------------------------- /__pycache__/person.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/__pycache__/person.cpython-38.pyc -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/database.py -------------------------------------------------------------------------------- /person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/person.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/JS/chart_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/JS/chart_data.js -------------------------------------------------------------------------------- /static/JS/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/JS/main.js -------------------------------------------------------------------------------- /static/JS/main.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/JS/main.js.bak -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/util.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/css/util.css -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/HELP-US-OUT.txt -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/css/font-awesome.css -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/animated.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/animated.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/bordered-pulled.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/core.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/fixed-width.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/font-awesome.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/icons.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/larger.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/list.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/mixins.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/path.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/rotated-flipped.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/screen-reader.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/screen-reader.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/stacked.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/less/variables.less -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_animated.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_animated.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_core.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_fixed-width.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_icons.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_larger.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_list.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_mixins.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_path.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_screen-reader.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_stacked.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/_variables.scss -------------------------------------------------------------------------------- /static/fonts/font-awesome-4.7.0/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/font-awesome-4.7.0/scss/font-awesome.scss -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-Black.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-ExtraBold.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-ExtraLight.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-Light.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-SemiBold.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/Montserrat-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/Montserrat-ThinItalic.ttf -------------------------------------------------------------------------------- /static/fonts/montserrat/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/montserrat/OFL.txt -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /static/fonts/poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/fonts/poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /static/images/amanSingh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/amanSingh.jpg -------------------------------------------------------------------------------- /static/images/bio-sensor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/bio-sensor.svg -------------------------------------------------------------------------------- /static/images/ecology.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/ecology.svg -------------------------------------------------------------------------------- /static/images/grass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/grass.svg -------------------------------------------------------------------------------- /static/images/humidity.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/humidity.svg -------------------------------------------------------------------------------- /static/images/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/icons/favicon.ico -------------------------------------------------------------------------------- /static/images/img-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/img-01.png -------------------------------------------------------------------------------- /static/images/lander.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/lander.jpg -------------------------------------------------------------------------------- /static/images/mobile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/mobile.jpg -------------------------------------------------------------------------------- /static/images/temperature.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/temperature.svg -------------------------------------------------------------------------------- /static/images/tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/tree.svg -------------------------------------------------------------------------------- /static/images/trees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/images/trees.svg -------------------------------------------------------------------------------- /static/vendor/animate/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/animate/animate.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/js/popper.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/js/popper.min.js -------------------------------------------------------------------------------- /static/vendor/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /static/vendor/css-hamburgers/hamburgers.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/css-hamburgers/hamburgers.css -------------------------------------------------------------------------------- /static/vendor/css-hamburgers/hamburgers.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/css-hamburgers/hamburgers.min.css -------------------------------------------------------------------------------- /static/vendor/jquery/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/jquery/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /static/vendor/select2/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/select2/select2.css -------------------------------------------------------------------------------- /static/vendor/select2/select2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/select2/select2.js -------------------------------------------------------------------------------- /static/vendor/select2/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/select2/select2.min.css -------------------------------------------------------------------------------- /static/vendor/select2/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/select2/select2.min.js -------------------------------------------------------------------------------- /static/vendor/tilt/tilt.jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/static/vendor/tilt/tilt.jquery.min.js -------------------------------------------------------------------------------- /templates/Login.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/templates/Login.htm -------------------------------------------------------------------------------- /templates/api_settings.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/templates/api_settings.htm -------------------------------------------------------------------------------- /templates/device_dashboard.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/templates/device_dashboard.htm -------------------------------------------------------------------------------- /templates/home.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/templates/home.htm -------------------------------------------------------------------------------- /templates/overview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/templates/overview.htm -------------------------------------------------------------------------------- /templates/profile.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/templates/profile.htm -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/test.py -------------------------------------------------------------------------------- /test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/test2.py -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amansinghtech/Flask-IoT-Dashboard/HEAD/update.py --------------------------------------------------------------------------------