├── Documentation ├── ESP-WROOM-03_Specifications_EN_v1.pdf └── ESP32_Specifications_EN_v1.pdf ├── Firmware ├── Blink │ ├── Makefile │ ├── build │ │ ├── app.out │ │ ├── app_app.a │ │ └── user │ │ │ └── user_main.o │ ├── firmware │ │ ├── app.ota │ │ ├── irom0_flash.bin │ │ └── irom1.bin │ ├── include │ │ └── user_config.h │ └── user │ │ └── user_main.c └── Phant │ ├── Makefile │ ├── build │ ├── app.out │ ├── app_app.a │ ├── phant │ │ └── phant.o │ └── user │ │ └── user_main.o │ ├── firmware │ ├── app.ota │ ├── irom0_flash.bin │ └── irom1.bin │ ├── include │ └── user_config.h │ ├── phant │ ├── phant.c │ └── phant.h │ └── user │ └── user_main.c ├── Fritzing ├── ESP32 Module Testbed.fzpz └── example_hookup.fzz ├── Graphical Datasheet ├── esp-wroom-03_top.jpg ├── esp32-wroom-03-graphical-datasheet.pdf ├── esp32-wroom-03-graphical-datasheet.svg ├── esp32-wroom-03.csv ├── esp32-wroom-03.png ├── esp32-wroom-03.svg └── tagscript.py ├── Hardware └── esp32.lbr ├── Images ├── esp-wroom-03-development-board.jpg ├── esp-wroom-03_bottom.jpg ├── esp-wroom-03_top.jpg ├── esp32-block-diagram.png ├── esp32-breadboard-circuit-angle.jpg ├── esp32-breadboard-circuit-top.jpg └── esp32-wroom-03-graphical-datasheet.png ├── LICENSE.md └── README.md /Documentation/ESP-WROOM-03_Specifications_EN_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Documentation/ESP-WROOM-03_Specifications_EN_v1.pdf -------------------------------------------------------------------------------- /Documentation/ESP32_Specifications_EN_v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Documentation/ESP32_Specifications_EN_v1.pdf -------------------------------------------------------------------------------- /Firmware/Blink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/Makefile -------------------------------------------------------------------------------- /Firmware/Blink/build/app.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/build/app.out -------------------------------------------------------------------------------- /Firmware/Blink/build/app_app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/build/app_app.a -------------------------------------------------------------------------------- /Firmware/Blink/build/user/user_main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/build/user/user_main.o -------------------------------------------------------------------------------- /Firmware/Blink/firmware/app.ota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/firmware/app.ota -------------------------------------------------------------------------------- /Firmware/Blink/firmware/irom0_flash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/firmware/irom0_flash.bin -------------------------------------------------------------------------------- /Firmware/Blink/firmware/irom1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/firmware/irom1.bin -------------------------------------------------------------------------------- /Firmware/Blink/include/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/include/user_config.h -------------------------------------------------------------------------------- /Firmware/Blink/user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Blink/user/user_main.c -------------------------------------------------------------------------------- /Firmware/Phant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/Makefile -------------------------------------------------------------------------------- /Firmware/Phant/build/app.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/build/app.out -------------------------------------------------------------------------------- /Firmware/Phant/build/app_app.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/build/app_app.a -------------------------------------------------------------------------------- /Firmware/Phant/build/phant/phant.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/build/phant/phant.o -------------------------------------------------------------------------------- /Firmware/Phant/build/user/user_main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/build/user/user_main.o -------------------------------------------------------------------------------- /Firmware/Phant/firmware/app.ota: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/firmware/app.ota -------------------------------------------------------------------------------- /Firmware/Phant/firmware/irom0_flash.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/firmware/irom0_flash.bin -------------------------------------------------------------------------------- /Firmware/Phant/firmware/irom1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/firmware/irom1.bin -------------------------------------------------------------------------------- /Firmware/Phant/include/user_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/include/user_config.h -------------------------------------------------------------------------------- /Firmware/Phant/phant/phant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/phant/phant.c -------------------------------------------------------------------------------- /Firmware/Phant/phant/phant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/phant/phant.h -------------------------------------------------------------------------------- /Firmware/Phant/user/user_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Firmware/Phant/user/user_main.c -------------------------------------------------------------------------------- /Fritzing/ESP32 Module Testbed.fzpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Fritzing/ESP32 Module Testbed.fzpz -------------------------------------------------------------------------------- /Fritzing/example_hookup.fzz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Fritzing/example_hookup.fzz -------------------------------------------------------------------------------- /Graphical Datasheet/esp-wroom-03_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Graphical Datasheet/esp-wroom-03_top.jpg -------------------------------------------------------------------------------- /Graphical Datasheet/esp32-wroom-03-graphical-datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Graphical Datasheet/esp32-wroom-03-graphical-datasheet.pdf -------------------------------------------------------------------------------- /Graphical Datasheet/esp32-wroom-03-graphical-datasheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Graphical Datasheet/esp32-wroom-03-graphical-datasheet.svg -------------------------------------------------------------------------------- /Graphical Datasheet/esp32-wroom-03.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Graphical Datasheet/esp32-wroom-03.csv -------------------------------------------------------------------------------- /Graphical Datasheet/esp32-wroom-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Graphical Datasheet/esp32-wroom-03.png -------------------------------------------------------------------------------- /Graphical Datasheet/esp32-wroom-03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Graphical Datasheet/esp32-wroom-03.svg -------------------------------------------------------------------------------- /Graphical Datasheet/tagscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Graphical Datasheet/tagscript.py -------------------------------------------------------------------------------- /Hardware/esp32.lbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Hardware/esp32.lbr -------------------------------------------------------------------------------- /Images/esp-wroom-03-development-board.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Images/esp-wroom-03-development-board.jpg -------------------------------------------------------------------------------- /Images/esp-wroom-03_bottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Images/esp-wroom-03_bottom.jpg -------------------------------------------------------------------------------- /Images/esp-wroom-03_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Images/esp-wroom-03_top.jpg -------------------------------------------------------------------------------- /Images/esp32-block-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Images/esp32-block-diagram.png -------------------------------------------------------------------------------- /Images/esp32-breadboard-circuit-angle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Images/esp32-breadboard-circuit-angle.jpg -------------------------------------------------------------------------------- /Images/esp32-breadboard-circuit-top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Images/esp32-breadboard-circuit-top.jpg -------------------------------------------------------------------------------- /Images/esp32-wroom-03-graphical-datasheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/Images/esp32-wroom-03-graphical-datasheet.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkfun/ESP32_Miscellany/HEAD/README.md --------------------------------------------------------------------------------