Difference between revisions of "Coffin Tester"
Line 102: | Line 102: | ||
| [[File:JAC Micro USB Adapter Board.jpg|left|thumbnail|x200px]] | | [[File:JAC Micro USB Adapter Board.jpg|left|thumbnail|x200px]] | ||
| | | | ||
+ | * Micro USB | ||
| | | | ||
+ | * Allows access for power, programming and charger for internal battery | ||
|} | |} | ||
Revision as of 16:28, 17 June 2024
Contents
Prelude To The Madness
What better project to resurrect from the incomplete project pile then “The Coffin Tester”? This project was inspired by the chance encounter of a small wooden coffin at a hobby store. With a coffin comes the standard project ideas: Someone is trying to get out or someone is inviting you in. Making both projects at once was my decision.
Overview from 6ft Under
The embedded coffin display in the lid shows classic monster portraits, letting you know who is inside. However, the camera in the lid also takes images of the viewer. When it detects a face, it displays the image on the display, letting you know that you are inside now. A Halloween SFX module within the box fires up and horror ensues. The WiFi capable board within makes future upgrades to functionality possible. The horror never ends.
Part Selection
Parts | ||||
---|---|---|---|---|
Name | Image | Details | Considerations | |
Small Wooden Coffin |
|
| ||
ArduCam ESP32S Uno w/ PSRAM |
|
| ||
SFX Halloween Module |
|
| ||
Round Display |
|
| ||
SD Card Adapter |
|
| ||
Battery Holders |
|
| ||
ICR18650 Battery |
|
| ||
PC817 Optocoupler |
|
| ||
Micro USB Cable |
|
| ||
Micro USB Port Adapter Board |
|
|
Common Materials | ||||
---|---|---|---|---|
Name | ||||
Jumper Wires Female/Female | ||||
Strip Board | ||||
Header Pins Male | ||||
Header Pins Female | ||||
Electrical Tape | ||||
Heat Shrink Tubing |
Element Preparation
Elements | ||||
---|---|---|---|---|
Halloween SFX Module | ArduCam ESP32S Uno w/ PSRAM | Coffin Top | Coffin Bottom | |
|
|
|
|
Project Surprises:
- GPIO02 boot-up tests for PSRAM voltage requirement interfered with HSPI Bus usage. Required eFuse setting to permanent PSRAM voltage level for HSPI normal operation
- ESP32 Cam with AI-Thinker hardware setup can be used for the project with a simple pin assignment change and the creators choice of one function loss.
- An overly elaborate method for using a vibrating motor to trigger SFX module, isolating the module electrically from Microcontroller abandon due to unnecessary complexity and stray triggering from handling project.
- SFX module uses High Brightness LEDs that cause short bursts of high current that have to be handled by separate battery pack in order to not require additional power supply circuitry for a common power supply.
- I had a ICR18650 lying around, so battery operation of project utilizing built in charging of the ArduCam. Then again, it could be a self-destruct method.
Programming Elements
- TFT display for the ArduCam
- HSPI usage
- Facial Detection Code
- Simple RAW Image decoding for saved images
- Camera image buffer display to TFT display
Assemblies
Resource
Parts | |
---|---|
Item | Link |
ArduCam Product Page | https://www.arducam.com/product/b0192-arducam-iotai-esp32-uno-psram-ov2640-camera/ |
GCA901A Demo on ESP32 | https://github.com/talofer99/ESP32CAM-Capture-and-send-image-over-esp-now |
ESP32 SPI Information | https://randomnerdtutorials.com/esp32-spi-communication-arduino/ |
ESP32 Now | https://randomnerdtutorials.com/esp-now-two-way-communication-esp32/ |
ESP32 Cam Photo Webserver | https://randomnerdtutorials.com/esp32-cam-take-photo-display-web-server/ |
ESP32 Cam Selfie | https://robotzero.one/esp32-cam-tft-selfie/ |
ESP32 Cam Pinout Guide | https://randomnerdtutorials.com/esp32-cam-ai-thinker-pinout/ |
ESP32 Cam Settings Guide | https://randomnerdtutorials.com/esp32-cam-ov2640-camera-settings/ |
ESP32 Cam as Camera with Display | https://www.instructables.com/ESP32-ESP32-CAM-With-OV2640-Using-SIPHSPI-for-TFT-/ |
ESP32 Camera and Webserver Sample Program from hardware library | Ardunio IDE Library |
ESP-DL | https://github.com/espressif/esp-dl |