Тёмный
No video :(

Arduino IDE + ESP32 CAM | ESP32-CAM Video Streaming Web Server with Pan and Tilt Cam Mount (2 Axis) 

Uteh Str
Подписаться 18 тыс.
Просмотров 13 тыс.
50% 1

Опубликовано:

 

25 авг 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 43   
@guruvarajaganesan9256
@guruvarajaganesan9256 3 месяца назад
Excellent project for surveillance camera project to build and enjoy the happiness of making projects . Thanks for guiding
@utehstr
@utehstr 3 месяца назад
👍🙂
@lucianodipaolo2428
@lucianodipaolo2428 2 года назад
magnificent work
@utehstr
@utehstr 2 года назад
Thank you 🙂.
@ZinTechIdeas
@ZinTechIdeas 2 года назад
excellent work
@utehstr
@utehstr 2 года назад
Thank you 🙂.
@henryg7736
@henryg7736 10 дней назад
Hey sorry maybe you missed something? What do you connect the servo to the ESP camera with? Meanwhile on the ESP32-CAM-MB USB Programmer there is no space or slot to connect the servo to the ESP camera
@yogeshitaliya473
@yogeshitaliya473 2 года назад
😍😍😍😍
@utehstr
@utehstr 2 года назад
👍🙂
@JaviersDIY
@JaviersDIY 4 месяца назад
I follow the steps and the code work very will but when i open the ip, the motor dont work. Can you help me sir?
@dineshkumara.parmar9930
@dineshkumara.parmar9930 Год назад
Very good video I try this project ✍✍
@utehstr
@utehstr Год назад
👍🙂
@denilsondossantos1658
@denilsondossantos1658 2 года назад
Verry good❤️
@utehstr
@utehstr 2 года назад
Thanks 🙂
@massonepaolo
@massonepaolo Год назад
Hi, it is possible to set the code for make the esp-32 module connect to my wifi network but have a fixed ip address to reach? Thank you
@psykopat81
@psykopat81 10 месяцев назад
The video flow is normal, but when I try to move the servo, the image disappears. I use a separate 5 volt power supply for the servo.
@gsrathore97x
@gsrathore97x 2 года назад
Sir, Your work and documentation is highly appreciated.🦾🦾
@utehstr
@utehstr 2 года назад
Thank you 🙂.
@mohsinpeero
@mohsinpeero Год назад
good attempt
@utehstr
@utehstr Год назад
Thank you 🙂.
@ath_greek
@ath_greek 6 месяцев назад
I did the 4# step and my servos are not responding on the web also the cam video is suddenly disappearing ;/
@aaronpaul2550
@aaronpaul2550 Год назад
very good
@utehstr
@utehstr Год назад
Thank you 🙂.
@josephusdy9726
@josephusdy9726 Год назад
Hi. Can i put a dynamic text overlay on the video streamed before it is being saved into the video file? I am using arduino programming. Thanks.
@rizkiefendi9004
@rizkiefendi9004 2 года назад
mantab teh
@utehstr
@utehstr 2 года назад
Makasih ki 🙂.
@MuhammadRidho-qu9ey
@MuhammadRidho-qu9ey 5 месяцев назад
use power bank?
@muhammadapriyansyah6655
@muhammadapriyansyah6655 Год назад
Why does the servo control when pressed doesn't work, only the light works
@fadzarizky1427
@fadzarizky1427 Год назад
duhh maslahnya sama bro
@psykopat81
@psykopat81 10 месяцев назад
did you solved your problem?
@psykopat81
@psykopat81 10 месяцев назад
​@@fadzarizky1427did you solved your problem?
@tuanpagaraji81
@tuanpagaraji81 Год назад
Bro...itu servo yang kamu pakai yg 180 derajat atau yang 360 derajat?
@utehstr
@utehstr Год назад
180 derajat.
@frustratedguy666
@frustratedguy666 Год назад
Do i have to erase previous code from esp32 before adding next code?
@utehstr
@utehstr Год назад
it depends how the previous code works. but I usually put simple program code like program code which just prints something like : serial.println("something" ); before entering the project code. i hope you understand what i mean.
@sdknstar601
@sdknstar601 Год назад
Just subscribe to your channel...i want to ask if the camera movement is able to control using a usb joystick connected on pc?..
@thevoiceland
@thevoiceland 9 месяцев назад
Is it possible to code it to follow people or anything that moves?
@utehstr
@utehstr 9 месяцев назад
Technically it's possible. But about how to make it, that's something I can't answer because of my limited knowledge and I've never made it. Maybe you can find it from other sources.
@thevoiceland
@thevoiceland 9 месяцев назад
​@@utehstr No worries! Thanks for the response. I'll definitely look into other sources. I have tried multiple codes to follow the detected object: ```C++ #include "esp_camera.h" #include #include #include // Replace with your network credentials const char* ssid = "YourWiFiSSID"; const char* password = "YourWiFiPassword"; // Use your own cascade static const char * face_cascade = "/cascade_path/haarcascade_frontalface_default.xml"; const int panPin = 12; // GPIO pin for pan servo const int tiltPin = 13; // GPIO pin for tilt servo Servo panServo; // Create instance of pan servo Servo tiltServo; // Create instance of tilt servo camera_config_t config; void setup() { WRITE_PERI_REG(RTC_CNTL_BROWN_OUT_REG, 0); // Disable brownout detector WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(1000); Serial.println("Connecting to WiFi..."); } Serial.println("Connected to WiFi"); panServo.attach(panPin); // Attach the pan servo to the GPIO pin tiltServo.attach(tiltPin); // Attach the tilt servo to the GPIO pin config.ledc_channel = LEDC_CHANNEL_0; // ... (rest of the camera configuration) esp_err_t err = esp_camera_init(&config); if (err != ESP_OK) { Serial.printf("Camera init failed with error 0x%x", err); return; } Serial.println("Camera ready"); } void loop() { camera_fb_t * fb = esp_camera_fb_get(); if (fb) { esp_err_t res = face_recognition(fb->width, fb->height, fb->format, fb->buf, 7, 1500, 2, 8, IDENTIFY, 64, 64); if (res) { Serial.println("Face detected!"); int panAngle = map(res.x, 0, fb->width, 0, 180); // Map x-coordinate of the detected face to the pan servo angle int tiltAngle = map(res.y, 0, fb->height, 0, 180); // Map y-coordinate of the detected face to the tilt servo angle panServo.write(panAngle); // Set the pan servo angle tiltServo.write(tiltAngle); // Set the tilt servo angle } esp_camera_fb_return(fb); } else { Serial.println("Camera capture failed"); } } ```
@leejaric4448
@leejaric4448 2 месяца назад
Hii sir, i am currently facing issue, may i know how to contact u
@tonyp4894
@tonyp4894 11 месяцев назад
why don't you put the code in a textfile editor like NOTEPAD. Putting it in a RAR file, just makes it hard to get the code, (why sign in and passwords?) Is it a secret?? Please, take the time to post your code in a text file Thank you
@teguhiman9138
@teguhiman9138 2 года назад
Bisa disave videonya?
@utehstr
@utehstr 2 года назад
Belum support untuk save video 🙂.
Далее
Коротко о моей жизни:
01:00
Просмотров 244 тыс.
Best Fails of the Decade | Try Not to Laugh
1:01:21
Просмотров 22 млн
Simple ESP32-CAM Object Detection
54:56
Просмотров 171 тыс.
are we seriously STILL talking about this?
10:00
Просмотров 22 тыс.
ESP32 CAM Blynk Multiple Camera Surveillance
8:41
Просмотров 506 тыс.
Cheap & Mini Pan/Tilt Bracket Assembly - SG90 Servo
5:09