Thank you for this video. I have been programming Arduino off and on for quite a number of years now. Recently my projects got bigger and more useful. Therefore I switched to ESP32 for the extra functionality but I ran into trouble getting it running. Your video was one step in the chain of things that helped me get me going. Thank you.
Excellent tutorial! I've been a software developer for over 32 years. I started with Arduino last year and I love it. Then I saw the ESP32. OMG, I have to have one, but what can I do with it? That's where your tutorials come in. Thank you so much for showing all the little settings and driver loads.😶🌫
Hello! Thank you very much, you helped me to create my first project. Without your help, it could take a century to get up and running for me myself:) I wish you success and good health. Will continue learning by watching your videos.
I have lots of bits and bobs lying around ESP32 nanos uno`s lcd`s oled`s etc to name a few lol and trying to learn C++ (maybe Rust later if i get good lol) . The way you teach this helps me so much and i want to say thanks :) playing with the code by making guesses as you see here also helps me learn better and learn to code keeping lines down to minimal ...Thanks again int ledPin =2; int dt =50; void setup() { // put your setup code here, to run once: pinMode(ledPin, OUTPUT); } void loop() { // put your main code here, to run repeatedly: delay(dt); digitalWrite(ledPin, HIGH); delay(dt); digitalWrite(ledPin, LOW); } i love it 😁😁😁
THANK YOU SO VERY MUCH SIR!!! This has been so very helpful and inspiring. It has given me the motivation to start experimenting with the ESP32. I didnt want to use the Arduino IDE but since everyone was saying you need to start with Arduino I thought ok after watching your video. Looking forward to trying out the next experiments. Have an absolutely wonderful day my friend.
Excellent video. However, since you mentioned Arduino in this presentation, should note that the ESP32 I/O pins are 3.3 vdc+ while, the Arduino I/O pins are 5 vdc+. This shouldn't be a big deal for the beginner.
11:09 why did not you install other drivers for windows like first option (universal drivers) why chose VCP drivers, why not next option "windows drivers"? please explain them and why not windows drivers with serial enumerator
How do I get com port for ESP32 espressif for windows 11? I tried CP210X universal Windows Driver V11.3.0 6/24/2023 I use Arduino IDE 2.2.1 with 115200 baud, but it didn’t work. The following works fine, Arduino UNO, UNO R4 WiFi and UNO R2 WiFi Please help.
serial.serialutil.SerialException: Cannot configure port, something went wrong. Original message: WindowsError(31, 'A device attached to the system is not functioning.') this error appeared for me what is the problem?
hi every time i use or test program with wifi i have this response : Writing at 0x000e0a15... (94 %) Writing at 0x000e6017... (97 %) Writing at 0x000eb858... (100 %) Wrote 903280 bytes (592542 compressed) at 0x00010000 in 7.5 seconds (effective 967.4 kbit/s)... Hash of data verified. Leaving... Hard resetting via RTS pin... i put a reset bt nothing change . why ? need help .
Do you somehow have a tutorial, how I can turn an ESP 32 module into a surveillance camera. I mean I want to mount the camera somewhere and can watch remotely with my mobile phone to see live or the recordings on the card. I bought 5 modules, but I didn't find a tutorial apart from photographing the person who passes in front of a presence sensor. So just take the pictures, no video.
@@EnjoyMechatronics I watched the suggested clip. But the same is presented here. These are the installation settings. I passed this level. I made the camera to work. But I don't know how I can see the recordings on the card, with my mobile phone, without removing the card from the surveillance camera.
My usb cables were charging only cables, had to buy a new cable which was capable of data transfer mentioned on cable box. I have too many cables only for charging, and i did not kno that.
Sir i want to build watch for depression disorder .I want to use EDA , heart sensor , oxygen sensor .So i want small esp32 that can be fit in a watch type equipment .How to give power without any connection
sir what shoud i do ? Traceback (most recent call last): File "esptool.py", line 31, in File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module File "esptool\__init__.py", line 41, in File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module File "esptool\cmds.py", line 14, in File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module File "esptool\bin_image.py", line 14, in File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module File "esptool\loader.py", line 30, in File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module File "serial\__init__.py", line 29, in File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module File "serial\serialwin32.py", line 15, in File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module File "ctypes\__init__.py", line 7, in ImportError: DLL load failed while importing _ctypes: The parameter is incorrect. [6032] Failed to execute script 'esptool' due to unhandled exception! exit status 1 Error compiling for board ESP32 Dev Module.
I really appreciate that he covers the "pitfalls" someone might encounter, like the missing driver. Rare in a how-to video. Earned my subscription!
Thank you for this video. I have been programming Arduino off and on for quite a number of years now. Recently my projects got bigger and more useful. Therefore I switched to ESP32 for the extra functionality but I ran into trouble getting it running.
Your video was one step in the chain of things that helped me get me going.
Thank you.
Excellent tutorial! I've been a software developer for over 32 years. I started with Arduino last year and I love it. Then I saw the ESP32. OMG, I have to have one, but what can I do with it? That's where your tutorials come in. Thank you so much for showing all the little settings and driver loads.😶🌫
Glad it was helpful!
@@EnjoyMechatronics Yes it was. I'm watching your camera video now. I'm ordering all 3 from Amazon. Thanks (subscribed)
Hello! Thank you very much, you helped me to create my first project. Without your help, it could take a century to get up and running for me myself:) I wish you success and good health. Will continue learning by watching your videos.
Thank you for this video. This is my first video for ESP 32. Thanks.
I have lots of bits and bobs lying around ESP32 nanos uno`s lcd`s oled`s etc to name a few lol and trying to learn C++ (maybe Rust later if i get good lol) . The way you teach this helps me so much and i want to say thanks :) playing with the code by making guesses as you see here also helps me learn better and learn to code keeping lines down to minimal ...Thanks again
int ledPin =2;
int dt =50;
void setup() {
// put your setup code here, to run once:
pinMode(ledPin, OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
delay(dt);
digitalWrite(ledPin, HIGH);
delay(dt);
digitalWrite(ledPin, LOW);
}
i love it 😁😁😁
Thanks, man
I'm so glad you like it.
Well done! I am totally new to this. I found your instructions super easy to understand.
Glad it was helpful!
THANK YOU SO VERY MUCH SIR!!! This has been so very helpful and inspiring. It has given me the motivation to start experimenting with the ESP32. I didnt want to use the Arduino IDE but since everyone was saying you need to start with Arduino I thought ok after watching your video. Looking forward to trying out the next experiments. Have an absolutely wonderful day my friend.
Best of luck!
Awesome and super helpful video. Thanks for explaining the SI Labs driver install info as well. Thank you!!
Really appreciate it.
And glad it was helpful.
Excellent tutoriel man I loved your explanation and I am excited to watch the video where we connect it with the wifi
Glad you liked it
Thank you so much for Tutorials 🙏
Glad they're helpful!
The world's best teacher thanks
Really appreciate it 😊
Very good video, your explanation is very clear. Thanks
Excellent video. However, since you mentioned Arduino in this presentation, should note that the ESP32 I/O pins are 3.3 vdc+ while, the Arduino I/O pins are 5 vdc+. This shouldn't be a big deal for the beginner.
Yes, you are right
Very clear instructions and perfect explanation for beginners. Thank you
Glad it was helpful!
Love your videos. Thank you. Please don't stop.
Thank you, I will
Hi,
Nice tutorial, just starting to get to grips with ESP32, where can I get the pinout you show in your tutorial please ?
Search for esp32s pinout
Have a nice day sir. From India.
Hey, what's up 😊
My COM port is not showing up in the ide. I installed the correct driver for my mac computer. what could be the issue?
11:09 why did not you install other drivers for windows like first option (universal drivers) why chose VCP drivers, why not next option "windows drivers"? please explain them and why not windows drivers with serial enumerator
Thank You, very informative and helpful
Glad you enjoyed it!
How do I get com port for ESP32 espressif for windows 11?
I tried CP210X universal Windows Driver V11.3.0 6/24/2023
I use Arduino IDE 2.2.1 with 115200 baud, but it didn’t work.
The following works fine, Arduino UNO, UNO R4 WiFi and UNO R2 WiFi
Please help.
YOU ARE THE GOD OF ESP32 🧡🧡
cannot find the esp32 board manager in the software pls help>>
Why should I press the boot button while uploading code?
Amazing brother 💯💯
Thanks 🔥
The port option doesn't allow me to click. What's wrong??
serial.serialutil.SerialException: Cannot configure port, something went wrong. Original message: WindowsError(31, 'A device attached to the system is not functioning.')
this error appeared for me what is the problem?
can you help me to get the link when i add the link to preferences Arduino give me message no board select
great explanation
i keep on getting the same msg that compilation failed. status 1 exit, despite selecting the correct board and everything
Thanks for the knowledge
My pleasure
damn tutorial and troubleshooting in one, this is very good!
This is very useful
Glad you think so!
hi
every time i use or test program with wifi i have this response :
Writing at 0x000e0a15... (94 %)
Writing at 0x000e6017... (97 %)
Writing at 0x000eb858... (100 %)
Wrote 903280 bytes (592542 compressed) at 0x00010000 in 7.5 seconds (effective 967.4 kbit/s)...
Hash of data verified.
Leaving...
Hard resetting via RTS pin... i put a reset bt nothing change . why ? need help .
I have problem bro
Pinmod and digitalwrite was not declared in this scope
I did what you did but 😢😢😢😢
Do you somehow have a tutorial, how I can turn an ESP 32 module into a surveillance camera.
I mean I want to mount the camera somewhere and can watch remotely with my mobile phone to see live or the recordings on the card.
I bought 5 modules, but I didn't find a tutorial apart from photographing the person who passes in front of a presence sensor. So just take the pictures, no video.
th-cam.com/video/R_GY0zbM1bM/w-d-xo.html
@@EnjoyMechatronics
I watched the suggested clip.
But the same is presented here.
These are the installation settings.
I passed this level.
I made the camera to work.
But I don't know how I can see the recordings on the card, with my mobile phone, without removing the card from the surveillance camera.
Note: the ESP32-DevKit C V4 does not have an included LED (except for the power one). it took me very long to figure that out.
Thanks
My usb cables were charging only cables, had to buy a new cable which was capable of data transfer mentioned on cable box. I have too many cables only for charging, and i did not kno that.
Sorry that's a common problem! Make sure your cable is labeled for data transfer, too.
Sir i want to build watch for depression disorder .I want to use EDA , heart sensor , oxygen sensor .So i want small esp32 that can be fit in a watch type equipment .How to give power without any connection
You can power the board through the 5v or 3.3v pins on the board
The link transfers me to github with a lot of folders and I Don t know what to do
Hi! Is it normal for a esp32 that requires to push the boot system everytime I upload a new code?
Some boards require pressing the boot button
Thank you!
You're welcome!
How do I know which driver (cp2102 from silicon lab) is need my window 11.
i tried holding boot button but it didnt work
Thank you so much
Any time
Iam trying to do same from last 1 week still cannot can help me
For me it's still showing failed to upload: uploading error:exit status 2
is it Solved?
sir what shoud i do ? Traceback (most recent call last):
File "esptool.py", line 31, in
File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module
File "esptool\__init__.py", line 41, in
File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module
File "esptool\cmds.py", line 14, in
File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module
File "esptool\bin_image.py", line 14, in
File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module
File "esptool\loader.py", line 30, in
File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module
File "serial\__init__.py", line 29, in
File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module
File "serial\serialwin32.py", line 15, in
File "PyInstaller\loader\pyimod02_importers.py", line 352, in exec_module
File "ctypes\__init__.py", line 7, in
ImportError: DLL load failed while importing _ctypes: The parameter is incorrect.
[6032] Failed to execute script 'esptool' due to unhandled exception!
exit status 1
Error compiling for board ESP32 Dev Module.
Thanks alot bro
Happy to help
why when I reconnect the chip to the laptop. Why do the chips stay blue?
very nice
Thanks
I cant find VCP windows
The website don't exist
Bro esp 32 wifi repeater do bro
♥ Don't Click This! : bit.ly/3jvI8g6
failed uploading: uploading error: status 2. why?
is it solved?
hold boot button and use a secure cable
there no port showing what should I do?
Check out the USB cable and make sure it supports data transfer, or you may need to install some drivers by going to the device manager.
@@EnjoyMechatronics When I open device manager nothing appear what do I have to do?
@@m.c3899 Try another USB cable
Hi
السلام عليكم ياخي لما تجعل المحتوي انجليزي وانت عربي
bit.ly/3vSsUH4
yeah