├── LICENSE ├── README.md ├── images └── Schematic_ESPlorer-v1.png └── src └── ESPlorerI_v1 ├── .cproject ├── .project ├── .settings ├── language.settings.xml └── org.eclipse.cdt.core.prefs ├── BMP.h ├── DMABuffer.h ├── ESP32Servo.cpp ├── ESP32Servo.h ├── ESPlorerI_v1.ino ├── Fields.cpp ├── Fields.h ├── I2C.h ├── I2SCamera.cpp ├── I2SCamera.h ├── Log.h ├── OV7670.cpp ├── OV7670.h ├── Util.cpp ├── Util.h ├── XClk.cpp ├── XClk.h └── data └── www ├── .history ├── index_20190105122150.htm ├── index_20190105133206.htm ├── script_20190105122035.js ├── script_20190105132105.js ├── script_20190105132130.js ├── script_20190105132157.js ├── script_20190105132235.js ├── script_20190105132405.js ├── script_20190105132846.js ├── script_20190105132900.js ├── style_20190105130936.css ├── style_20190105132213.css ├── style_20190105132247.css ├── style_20190105132314.css ├── style_20190105132340.css ├── style_20190105132436.css ├── style_20190105132457.css ├── style_20190105132525.css ├── style_20190105132537.css ├── style_20190105132608.css ├── style_20190105132720.css ├── style_20190105132746.css ├── style_20190105132816.css ├── style_20190105132917.css ├── style_20190105133153.css ├── style_20190105133252.css ├── style_20190105133336.css ├── style_20190105133355.css ├── style_20190105133404.css ├── style_20190105133426.css └── style_20190105133437.css ├── exit.png ├── fast.png ├── gauge.min.js ├── index.htm ├── info.png ├── lights_off.png ├── lights_on.png ├── manifest.json ├── nipplejs.min.js ├── on_off.png ├── reset.png ├── script.js ├── slow.png ├── style.css └── toolbar_spacer.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/README.md -------------------------------------------------------------------------------- /images/Schematic_ESPlorer-v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/images/Schematic_ESPlorer-v1.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/.cproject -------------------------------------------------------------------------------- /src/ESPlorerI_v1/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/.project -------------------------------------------------------------------------------- /src/ESPlorerI_v1/.settings/language.settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/.settings/language.settings.xml -------------------------------------------------------------------------------- /src/ESPlorerI_v1/.settings/org.eclipse.cdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/.settings/org.eclipse.cdt.core.prefs -------------------------------------------------------------------------------- /src/ESPlorerI_v1/BMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/BMP.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/DMABuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/DMABuffer.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/ESP32Servo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/ESP32Servo.cpp -------------------------------------------------------------------------------- /src/ESPlorerI_v1/ESP32Servo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/ESP32Servo.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/ESPlorerI_v1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/ESPlorerI_v1.ino -------------------------------------------------------------------------------- /src/ESPlorerI_v1/Fields.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/Fields.cpp -------------------------------------------------------------------------------- /src/ESPlorerI_v1/Fields.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/Fields.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/I2C.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/I2C.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/I2SCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/I2SCamera.cpp -------------------------------------------------------------------------------- /src/ESPlorerI_v1/I2SCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/I2SCamera.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/Log.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/OV7670.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/OV7670.cpp -------------------------------------------------------------------------------- /src/ESPlorerI_v1/OV7670.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/OV7670.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/Util.cpp -------------------------------------------------------------------------------- /src/ESPlorerI_v1/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/Util.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/XClk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/XClk.cpp -------------------------------------------------------------------------------- /src/ESPlorerI_v1/XClk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/XClk.h -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/index_20190105122150.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/index_20190105122150.htm -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/index_20190105133206.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/index_20190105133206.htm -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/script_20190105122035.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/script_20190105122035.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/script_20190105132105.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/script_20190105132105.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/script_20190105132130.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/script_20190105132130.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/script_20190105132157.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/script_20190105132157.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/script_20190105132235.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/script_20190105132235.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/script_20190105132405.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/script_20190105132405.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/script_20190105132846.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/script_20190105132846.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/script_20190105132900.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/script_20190105132900.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105130936.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105130936.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132213.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132213.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132247.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132247.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132314.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132314.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132340.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132340.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132436.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132436.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132457.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132457.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132525.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132525.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132537.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132537.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132608.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132608.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132720.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132720.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132746.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132746.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132816.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132816.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105132917.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105132917.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105133153.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105133153.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105133252.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105133252.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105133336.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105133336.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105133355.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105133355.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105133404.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105133404.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105133426.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105133426.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/.history/style_20190105133437.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/.history/style_20190105133437.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/exit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/exit.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/fast.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/gauge.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/gauge.min.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/index.htm -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/info.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/lights_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/lights_off.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/lights_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/lights_on.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/manifest.json -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/nipplejs.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/nipplejs.min.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/on_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/on_off.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/reset.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/script.js -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/slow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/slow.png -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/style.css -------------------------------------------------------------------------------- /src/ESPlorerI_v1/data/www/toolbar_spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JoaoLopesF/ESPlorer_v1/HEAD/src/ESPlorerI_v1/data/www/toolbar_spacer.png --------------------------------------------------------------------------------