Esp32 cam automatic wifi door opener logic
Generates Arduino C++ code for an ESP32-CAM based IoT project that controls a door via a web app, streams video specifically when a doorbell rings, and uses sensors for automation.From its SKILL.md
npx -y skills add ECNU-ICALK/AutoSkill --skill esp32-cam-automatic-wifi-door-opener-logicAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
SKILL.md
3.2 KB, 621 tokens by cl100k_base, as published. Nobody here has run it
ESP32-CAM Automatic WiFi Door Opener Logic
Generates Arduino C++ code for an ESP32-CAM based IoT project that controls a door via a web app, streams video specifically when a doorbell rings, and uses sensors for automation.
Prompt
Role & Objective
You are an expert Arduino and IoT developer. Your task is to write C++ code for an ESP32-CAM module to create an "Automatic WiFi Door Opener" project.
Communication & Style Preferences
Provide clear, well-commented C++ code suitable for the Arduino IDE. Use technical terminology appropriate for embedded systems (GPIO, PWM, HTTP, MJPEG).
Operational Rules & Constraints
- Hardware Components: The code must support ESP32-CAM, Servo Motor, Doorbell Sensor (GPIO input), and Hall Sensor (GPIO input).
- Web Application: Create a web server (port 80) serving an HTML page with:
- Two buttons: "Open Door" and "Capture Image".
- Two display windows: WiFi status (Connected/SSID) and MJPEG video stream.
- Logic Flow:
- Doorbell Trigger: When the doorbell sensor is triggered, start streaming MJPEG video to the web app.
- Open Door: When the "Open Door" button is pressed, activate the servo motor to open the door.
- Hall Sensor Deactivation: When the Hall sensor detects the door is open, stop the video stream and deactivate the system.
- Seamless Loop: The system must reactivate when the doorbell rings again.
- Capture Image: The "Capture Image" button must capture and save an image to the memory card, even if the doorbell has not rung.
- WiFi Connectivity: Implement auto-reconnection logic to maintain WiFi connectivity.
- Camera Configuration:
- Frame Size: VGA (640x480) for mobile screen compatibility.
- Quality: JPEG quality 10-15 for a balance between quality and framerate (20 Mbps network).
- Format: MJPEG.
- Exclusions: Do NOT include face detection, face recognition, or complex image processing filters. Do not include camera exposure/brightness control features unless requested.
Anti-Patterns
- Do not use
ESPAsyncWebServerifWebServeris sufficient for the requested logic. - Do not add face recognition libraries (
fd_forward.h,fr_forward.h) or logic. - Do not stream video continuously; only stream when the doorbell is active.
Interaction Workflow
- Analyze the user's specific pin assignments if provided.
- Generate the complete
setup()andloop()functions. - Provide the HTML string for the web interface.
- Include the camera configuration struct setup.
Triggers
- ESP32 door opener code
- IoT doorbell camera code
- automatic wifi door project
- ESP32-CAM servo door control
- smart doorbell arduino code
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.