Hi everyone - It's come to my attention that there has been someone masquerading as myself, responding to some comments here with a link to a Telegram chat to win a prize from me. THIS IS A SCAM, I am not holding a contest, nor do I have a Telegram account. PLEASE DO NOT RESPOND TO THESE MESSAGES!! It's happening on a lot of my videos, I'm taking steps to remove them manually, but as I have 162 videos, it will take some time. If you do run across a suspicious comment, I would appreciate you letting me know at info@dronebotworkshop.com. Thanks! Bill (The real one!)
for streaming , built-in webserver example is good. I have put the streaming for 4 days it is working fine. Also I suggest to do live streaming instead of storing it on SD while youtube gives a free storage for 12 hrs stream which save GBs. but you need to connect your ESP32-CAM with VLC player for this.
it took me some time to realize how come, some boards require to press the boot and reset buttons to program the ESP and some other boards don't need that and Arduino puts the ESP32 into the boot mode automatically. The solution is simple: DTR and RST pins from FTDI connected to GPIO-0 and ENABLE pins accordingly - then magic happens ;-)
Thanks for this, Bill. I've got a couple of ESP32 cam boards that I have been procrastinating tinkering with. It's good to have these tutorials available.
Interesting find. I can see that there are a lot of sellers offering this product on-line. What one can immediatly realize is that this one works with the OV2640 Camera. Since I am very sure many of us have a lot of cameras in their old phones that are orders of magnitudes better than the OV2640 Camera, I am curious to know whether there are dedicated boards for running better cameras, from Samsung for instance.
Nice tutorial, but.... Bill.. You use an unsigned int as a counter (65535), but only 1 byte(255) for the eeprom. So the max count can never be more than 255 (after 255 it will go back to 0 *overflow*). Just wanted to inform you. :) PS:Don't forget about the initialization time for a pir sensor to(between 1 and 2 minutes)!
@@dh2032 If you reserve 2 bytes for the eeprom, then you can store a value up to 65535 if your counter is an uint16_t. If you reserve 4 bytes for the eeprom, then you can have an unsigned long counter that counts up to a lot more. Hope this explains it.
@@digihz_data Hello Mr. Sandberg and sorry for the "stupid" question: (I am an absolut newbie and try to dive into these topic since someone is constantly attacking/damaging my little motorcycle so I need to get as many pics as possible to find out who it is) DO I get you right to change LINE26 to: EEPROM_SIZE 2? or schould I take 4? :-))) anything else you suggest to chatch this bas****? ;-)
@Blonder well....if eeprom size is set to 1 then you only have 1 byte to use in the eeprom. Esp32 can have up to 4096 bytes max. So it is up to you to set the desired size that you will be using.
@Blonder 1 byte can only contain a value between 0 and 255. 2 bytes(like an int or unsigned int can hold bigger values. The more bytes you set in eeprom size,the more data you can store in the eeprom. If you are a newbie,I recommend you Google for "arduino eeprom", "arduino variables" and simular.
Thank you for this informative video. Your clear and concise explanations of the code and the demonstration of the process were very helpful. I appreciated how you walked through the steps of setting up the hardware and software components needed to save images to the MicroSD card. Your troubleshooting tips were also very useful for those who may run into issues while working with the ESP32-CAM and the MicroSD card. Thank you for sharing your knowledge and expertise on this topic!
Is there a way to record video directly to the computer or NAS hard drive? (network drive or directly on a PC) ?? I know that it can be done to the SD card, but I need a remote cam and the ability to record either via the browser to a hard drive, or if it has the ability, to map to a network drive and folder and record directly to that. ????
Is there any kind of microcontroller+CAM modul which can take picture with good enough quality? Becasuse this ESP32-CAM+OV2640 has rather very bad picture quality.
Nice video, very informative! Question though... One thing I've noticed with some cameras, is that they take time to stabilize the image when they first power on. If pictures are taken too soon after it powers on, they come out with odd coloring. For instance, some of the pictures in the time-lapse are purple. Is that the case with this camera? Do the pictures come out better if you pause for a few seconds after coming out of sleep to let it stabilize before taking a picture?
I bought one a couple of years ago but never used it. Question: Would I be able to see the faint stars at night without a zoom lens? Most cameras are not sensitive enough to pick up stars in the night sky. I want to monitor the light sources in the sky at night, to see which ones are moving and then take a 5 sec video. I was going to use a Rpi Noir and a Rpi 3B+ I have, but if I can get away with using a smaller power pig, I'd rather use that instead. Thanks for another excellent video.
Thanks for all the great videos and teachings. Would you consider in the coming opportunity to show us how to setup and use the Lilygo T Display with ESP32S3 ?
Thank you for a great video. Just did a quick search on your videos and did not find the answer to the question I would like to ask you. I am looking for a detailed video or write-up on erasing the ESP32/8266. Found a couple of examples but there were steps not covered preventing any attempts to erase the contents of the flash.
A big subject that nobody seems to have talked about is this: Can the SD card on an ESP 32 Cam be read and manipulated remotely? A lot of times these cameras are in remote locations and it is not easy to pull out the card and read the pictures.
the webserver could be adapted to show the list of files on the sdcard and let you transfer them one by one probably ... but memory work space could be the problem ... if you know the file name range you may not need a webpage (less to code), just have a loop on your pc trying wget on all the file names on the webserver.
You can do that easily. There is a web server you can run on this thing and you can do whatever you like with it as long as the server is up and connected to WiFi
@6:26 "... It's a micro SD port ..." should be "micro USB" port. Interesting subject. This is in my project queue but unfortunately not very close to the top right now. Well done video as unusual.
This is off topic but I have a request that many others may be interested in also. I struggle trying to connect peripheral devices to my boards. Trying to decipher GPIO## vs D##, TX01, TX02, SPI01, SPI02. It seems like I work for days on every display (and other items) I try to hook up to different devices. Everything is labeled differently. Add to that, most tutorials say you can use any pin for any connection on some boards but how? Today I worked with an ESP32 DEVKITV1 and a Wemos 1327 display. After about 4 hours and multiple hook up attempts and multiple different examples the best I got was a bunch of flickering dots before I gave up...again. I don't want a video showing how to hook up my specific combination. I think a lot of us could benefit from a tutorial on deciphering pins and SPI, IIC and UART type connections. I'd rather learn how to figure it out for myself than to be just told connect pin 1 to pin A etc. I've got OLED's, LCD's, 7 Segment, E-Paper and unless it is IIC it rarely works. Even the boards without a QWIIK interface can be difficult with IIC. Thanks for listening.
HiAll, Just a wee share I tried to compile this code with the ESP board library version 1.0.6 and it fails. I had to take the library back to 1.0.4 to compile properly. Excellent videos and articles, I have learned a lot on this channel. Thanks so much
Great tutorial! I've been struggling with a motion sensor camera project using an esp32cam with the module board. Several other tutorials have been too complex, and I haven''t been successful. I'm working through your example, and using the simple camera code - I can only take pictures in QVGA. The larger pictures come out super dark, or solid black. The webserver example sketch works fine, and I've verified all the pins are the same for your example. Do you know what setting controls the exposure length?
one question is by using this extension board connected to the ESP32 camera module, do you need the RFID module to flash the code and how are you powering up this ESP32 camera?
Did they ever fix the issue with the small board that has the polarity mismatch? Its the board that comes as a set when you spend the extra money, there was/is an issue with a diode blowing out on it and it ruins both boards ( all of my stuff is packed away from the hurricane, I would have provided board numbers eslewise..)
hmmm Why not use the SD disk to record the file number rather than the EEPROM. new disk new file number at zero. simple push button also can zero the image count. If one can read the disk one can write to it, the camera does not have exclusive access or does it?
Is it possible to use higher or different lens with IR Filter on ESP32 CAM Module for Night Vision with better picture quality. If yes then please make demo video for that, if not then please let me know.
Hi Sir, thank you for your tutorials, it was great. Please, I would like to know if by inserting a memory card, the images recorded by the Esp32-cam module can be used for easy detection, or if facial recognition is limited depending on the space available to the esp32-cam , or if it is possible to store the maximum depending on the external memory add? Thank you, please answer me, it's urgent for me.
Hello DroneBot Workshop . Thank you for all your videos, there are very instructives. i have a question. In webcams all of them have a polarizing film for watch the things in the visible spectrum. This ESP32 can view in the visible and in IR (infraRED). I need to use Infrared camera in Arduino projects, do you know if i can use this, or another camera or doing a magic trick with a polarizing material? Again. Thanks for the videos.
Search TH-cam for ESP32 and you will find instructions on how to remove the infrared filter from the 2640 or other cameras for use with IR led lighting.
hi great stuff on your channle was woundering if you can add day/month/time and cam number to the picture saved ? in the picture itself? not the file name
@@mystery_1101 Well, if you’re unfamiliar with the module your should watch it. And possibly study reading a bit also, since that was what I wrote in my original comment :).
This board scares me, my spine is currently goosed so I'm struggling to keep a steady hand with the iron (have ruined one board with the zero ohm resistor mod).. why can't they just use a dip switch.. it's already constrained in depth by the same pin height..
It would be great if you could download the pictures stored on the SD card of an ESP 32 Cam and then erase the files once they have been downloaded. Does anyone know if that is possible?
Having limited success here. My biggest issue so far is, after loading up the ESP32 library, I ended up with no less than TWO HUNDRED boards. Not one f them was called ESP32-CAM. Only two with CAM in the name and they don't work. Does anyone have any ideas?
great video. One annoying problem with this card is the use of a common GPIO pin for the LED flash and the SD card which means reading and writing to the SD will cause the LED to flash. Very annoying. Here is a hardware bit of surgery you can do to isolate the flash LED from the SD card (by cutting one surface mount resistor) and splicing it to the smaller LED's GPIO line (by cutting out the little surface mount LED). th-cam.com/video/loet1ndG8Sg/w-d-xo.html
Hello, I never managed to get it to work and I bought several and each time it doesn't work on many videos you see that it's so easy but in truth it's not easy at all to ask yourself if the videos are real are stupid or a nice montage for idiots like me
Hi everyone - It's come to my attention that there has been someone masquerading as myself, responding to some comments here with a link to a Telegram chat to win a prize from me. THIS IS A SCAM, I am not holding a contest, nor do I have a Telegram account. PLEASE DO NOT RESPOND TO THESE MESSAGES!!
It's happening on a lot of my videos, I'm taking steps to remove them manually, but as I have 162 videos, it will take some time. If you do run across a suspicious comment, I would appreciate you letting me know at info@dronebotworkshop.com.
Thanks!
Bill (The real one!)
Hi please i need help i am constantly getting the error no serial data received is my esp32-cam broken or what is it?
the quality of your videos and the explanations are far above everything i have seen.
After loosing time with partial or wrong informations, I found your site. Thanks a lot for your pedagogy !
for streaming , built-in webserver example is good. I have put the streaming for 4 days it is working fine. Also I suggest to do live streaming instead of storing it on SD while youtube gives a free storage for 12 hrs stream which save GBs. but you need to connect your ESP32-CAM with VLC player for this.
hi ;
just start my project with esp32 cam!!!
with this video nothing can be wrong
thx a lot for shared knowledge ,
regards
Your videos make it so simple and fun to follow!
You have so many great videos! Just wanted to say thanks for publishing constantly, and for such great content!
Thanks for another informative video, as a photographer by trade and a dilettante in electronics and radio, I shall have to try this one.
Nice tutorial!!.
I wonder if it is possible to use a better camera module one with better quality
it took me some time to realize how come, some boards require to press the boot and reset buttons to program the ESP and some other boards don't need that and Arduino puts the ESP32 into the boot mode automatically. The solution is simple: DTR and RST pins from FTDI connected to GPIO-0 and ENABLE pins accordingly - then magic happens ;-)
Thanks for this, Bill.
I've got a couple of ESP32 cam boards that I have been procrastinating tinkering with. It's good to have these tutorials available.
Excellent! Thank you! I appreciate the detailed way that you explained the code.
SDFormat works well also. SmartDisk32 search turned up, Partition Assistant Std.
Interesting find. I can see that there are a lot of sellers offering this product on-line. What one can immediatly realize is that this one works with the OV2640 Camera. Since I am very sure many of us have a lot of cameras in their old phones that are orders of magnitudes better than the OV2640 Camera, I am curious to know whether there are dedicated boards for running better cameras, from Samsung for instance.
Nice tutorial, but....
Bill.. You use an unsigned int as a counter (65535), but only 1 byte(255) for the eeprom. So the max count can never be more than 255 (after 255 it will go back to 0 *overflow*).
Just wanted to inform you. :)
PS:Don't forget about the initialization time for a pir sensor to(between 1 and 2 minutes)!
thanks so is the a solution to go past 255+, or is it just quirk of of think, e.g. if you want more buy the more expensive model?
@@dh2032 If you reserve 2 bytes for the eeprom, then you can store a value up to 65535 if your counter is an uint16_t. If you reserve 4 bytes for the eeprom, then you can have an unsigned long counter that counts up to a lot more.
Hope this explains it.
@@digihz_data Hello Mr. Sandberg and sorry for the "stupid" question: (I am an absolut newbie and try to dive into these topic since someone is constantly attacking/damaging my little motorcycle so I need to get as many pics as possible to find out who it is) DO I get you right to change LINE26 to: EEPROM_SIZE 2? or schould I take 4? :-))) anything else you suggest to chatch this bas****? ;-)
@Blonder well....if eeprom size is set to 1 then you only have 1 byte to use in the eeprom. Esp32 can have up to 4096 bytes max. So it is up to you to set the desired size that you will be using.
@Blonder 1 byte can only contain a value between 0 and 255. 2 bytes(like an int or unsigned int can hold bigger values. The more bytes you set in eeprom size,the more data you can store in the eeprom. If you are a newbie,I recommend you Google for "arduino eeprom", "arduino variables" and simular.
Thank you for this informative video. Your clear and concise explanations of the code and the demonstration of the process were very helpful. I appreciated how you walked through the steps of setting up the hardware and software components needed to save images to the MicroSD card. Your troubleshooting tips were also very useful for those who may run into issues while working with the ESP32-CAM and the MicroSD card. Thank you for sharing your knowledge and expertise on this topic!
This was a very useful video for me.
On the Time-Lapse, a count-down counter would be nice to have so you know when it will take the next shot.
I love your channel! Totally addicted
I highly recommend getting the 2 dollar programmer board for the esp32cam. Programming it with FTDI can be a pain in the @$$
Agreed, so far 2 FTDI cards and 1 ESP32-CAM have burnt out during general dev usage - connected to a macbook usb port.
🤕
Is there a way to record video directly to the computer or NAS hard drive? (network drive or directly on a PC) ??
I know that it can be done to the SD card, but I need a remote cam and the ability to record either via the browser to a hard drive, or if it has the ability, to map to a network drive and folder and record directly to that. ????
Thanks a lot Bill! Did you ever think of streaming snapshots or even videos wirelessly to store them remotely?
Amazing video once again 👍
Great work! 😁
Thanks for the tutorial.
I love your shop
Great video I needed this and it helped thanks!
Very good piece of video. Thank you very much for your great job, very well documented!
Cool, I am actually waiting for the complete set of this. Cost me only $9.01 with shipping and tax on aliexpress.
Is there any kind of microcontroller+CAM modul which can take picture with good enough quality? Becasuse this ESP32-CAM+OV2640 has rather very bad picture quality.
You can try raspberry pi zero with its various camera modules
Thanks for the videos. Are there any for the Raspberry pi (zero 2w)?
You are a lifesaver!
Nice video, very informative! Question though... One thing I've noticed with some cameras, is that they take time to stabilize the image when they first power on. If pictures are taken too soon after it powers on, they come out with odd coloring. For instance, some of the pictures in the time-lapse are purple. Is that the case with this camera? Do the pictures come out better if you pause for a few seconds after coming out of sleep to let it stabilize before taking a picture?
I would like to know this to. Anyone knows?
Good explanation, clean code
I bought one a couple of years ago but never used it.
Question: Would I be able to see the faint stars at night without a zoom lens?
Most cameras are not sensitive enough to pick up stars in the night sky.
I want to monitor the light sources in the sky at night, to see which ones are moving and then take a 5 sec video.
I was going to use a Rpi Noir and a Rpi 3B+ I have, but if I can get away with using a smaller power pig, I'd rather use that instead.
Thanks for another excellent video.
You are Best Of the Best
Can I add a 4 pin oled to display some information with this project, if yes, which pins should I connect to??
Thanks..
Excellent content...
I will be happy if the volume is little more.
I am unable to hear while in transit.
Bro has never heard of earphones
Thanks for all the great videos and teachings. Would you consider in the coming opportunity to show us how to setup and use the Lilygo T Display with ESP32S3 ?
Great stuff !...cheers
Awesome Work....Your Videos..
Creative video, like it, thanks for sharing :)
I indeed have always wanted to know who's been eating my jellybeans, Thank You.
(How) did you glue the backside of the camera to the SD card slot, to make it a small heat sink?
Thank you for a great video. Just did a quick search on your videos and did not find the answer to the question I would like to ask you.
I am looking for a detailed video or write-up on erasing the ESP32/8266.
Found a couple of examples but there were steps not covered preventing any attempts to erase the contents of the flash.
A big subject that nobody seems to have talked about is this: Can the SD card on an ESP 32 Cam be read and manipulated remotely? A lot of times these cameras are in remote locations and it is not easy to pull out the card and read the pictures.
Not directly, but you could add such a thing to your app
the webserver could be adapted to show the list of files on the sdcard and let you transfer them one by one probably ... but memory work space could be the problem ...
if you know the file name range you may not need a webpage (less to code),
just have a loop on your pc trying wget on all the file names on the webserver.
There are FTP server libraries. You can access , download, upload and delete data with programs like FileZilla.
You can do that easily. There is a web server you can run on this thing and you can do whatever you like with it as long as the server is up and connected to WiFi
Great video! But can you transmit the video via the wifi?
Awesome 👍👍
@6:26 "... It's a micro SD port ..." should be "micro USB" port. Interesting subject. This is in my project queue but unfortunately not very close to the top right now. Well done video as unusual.
This is off topic but I have a request that many others may be interested in also. I struggle trying to connect peripheral devices to my boards. Trying to decipher GPIO## vs D##, TX01, TX02, SPI01, SPI02. It seems like I work for days on every display (and other items) I try to hook up to different devices. Everything is labeled differently. Add to that, most tutorials say you can use any pin for any connection on some boards but how? Today I worked with an ESP32 DEVKITV1 and a Wemos 1327 display. After about 4 hours and multiple hook up attempts and multiple different examples the best I got was a bunch of flickering dots before I gave up...again. I don't want a video showing how to hook up my specific combination. I think a lot of us could benefit from a tutorial on deciphering pins and SPI, IIC and UART type connections. I'd rather learn how to figure it out for myself than to be just told connect pin 1 to pin A etc. I've got OLED's, LCD's, 7 Segment, E-Paper and unless it is IIC it rarely works. Even the boards without a QWIIK interface can be difficult with IIC. Thanks for listening.
HiAll,
Just a wee share
I tried to compile this code with the ESP board library version 1.0.6 and it fails. I had to take the library back to 1.0.4 to compile properly.
Excellent videos and articles, I have learned a lot on this channel. Thanks so much
Great tutorial! I've been struggling with a motion sensor camera project using an esp32cam with the module board. Several other tutorials have been too complex, and I haven''t been successful. I'm working through your example, and using the simple camera code - I can only take pictures in QVGA. The larger pictures come out super dark, or solid black. The webserver example sketch works fine, and I've verified all the pins are the same for your example. Do you know what setting controls the exposure length?
one question is by using this extension board connected to the ESP32 camera module, do you need the RFID module to flash the code and how are you powering up this ESP32 camera?
I meant the FTDI* module
Can we use ESP32CAM as a normal ESP32 without the camera but using the microSD card for data logging?
Now all we need is night vision :-)
Did they ever fix the issue with the small board that has the polarity mismatch? Its the board that comes as a set when you spend the extra money, there was/is an issue with a diode blowing out on it and it ruins both boards ( all of my stuff is packed away from the hurricane, I would have provided board numbers eslewise..)
hmmm Why not use the SD disk to record the file number rather than the EEPROM. new disk new file number at zero. simple push button also can zero the image count. If one can read the disk one can write to it, the camera does not have exclusive access or does it?
Good idea if it works,then we are not limited to the number of eprom writes to.
Should the flash always remain on?
Bravisimo!!!
Is it possible to use higher or different lens with IR Filter on ESP32 CAM Module for Night Vision with better picture quality. If yes then please make demo video for that, if not then please let me know.
Hello !!
I want to store camera live stream data like video in sd card . how to do this?
how connect esp32 cam to zerotier-one... thanks
always amazing
how can i modify the sketch so that the images are sent to my computer through wifi instead of putting the images on the micro id card ??? Thank you
Hi sir your videos are very helpful
Please tell how to use raspberry pi pico inbuilt flash insted of eeprom to store 2 or 3 digit numbers
Why does your picture of the hookup show the DTFI jumpered for 5 volts surely this is an error
Thanks a lot for shared knowledge ,
I bought 4 cams with the programmers in the same packages. But my question is can the cam stream the video live?
How do i send the images off of the SD card via wifi?
Hi Sir, thank you for your tutorials, it was great. Please, I would like to know if by inserting a memory card, the images recorded by the Esp32-cam module can be used for easy detection, or if facial recognition is limited depending on the space available to the esp32-cam , or if it is possible to store the maximum depending on the external memory add? Thank you, please answer me, it's urgent for me.
Hello DroneBot Workshop
. Thank you for all your videos, there are very instructives.
i have a question. In webcams all of them have a polarizing film for watch the things in the visible spectrum. This ESP32 can view in the visible and in IR (infraRED).
I need to use Infrared camera in Arduino projects, do you know if i can use this, or another camera or doing a magic trick with a polarizing material?
Again. Thanks for the videos.
Search TH-cam for ESP32 and you will find instructions on how to remove the infrared filter from the 2640 or other cameras for use with IR led lighting.
Do you have a link to a MAC version of the SmartDisk software, I can't find it.
Nice device. I wonder if can be used for recycling a film camera in a digital camera
I got one 3 days ago no sd but still cool.
why do we format the SD card to fat32 ?
I want to reinstall programming in my this esp32 cam from new point bcz some features r not working so what I need to do ?
hi great stuff on your channle
was woundering if you can add day/month/time and cam number to the picture saved ? in the picture itself? not the file name
i have issues ( A fatal error occurred: Failed to connect to ESP32: Timed out waiting for packet header
) ?
i'm not getting sound; my music plays .... something I'm missing?
Hi. Is it possible to use multiple GPIO pins of ESP32CAM along with the SD Card, if its camera is not used or plugged in? Kind Regards, Mohsin.
You can use pins 12-13 if SD is activated in a "slow" mode.
yeah, why the photo is looks like green??
Skip to 12:30 if you already know the module and don't want to hear the full phrase "ESP-32-cam-module" being said too many times ;)
And skipping all the theory? No way.
@@mystery_1101 Well, if you’re unfamiliar with the module your should watch it. And possibly study reading a bit also, since that was what I wrote in my original comment :).
is it possible to not use the resistor ?
You’d short-circuit the gnd and Vcc
ok but what if I want to use a 128 GB microSD card? becose it shuld work
Could we use the command pinMode(x,INPUT_PULLUP) instead of using external resistor?
Yes, but, it is not available on all pins and only one has pull down so final answer:
It depends. :)
This board scares me, my spine is currently goosed so I'm struggling to keep a steady hand with the iron (have ruined one board with the zero ohm resistor mod).. why can't they just use a dip switch.. it's already constrained in depth by the same pin height..
I got a set of these. 50 percent cam detection failure .
makasih om
It would be great if you could download the pictures stored on the SD card of an ESP 32 Cam and then erase the files once they have been downloaded. Does anyone know if that is possible?
Yes it is very possible, implementing a webbserver is the most easiest I think.
how to capture automatically every 5 second and send it to database ? anyone know ?
Having limited success here. My biggest issue so far is, after loading up the ESP32 library, I ended up with no less than TWO HUNDRED boards. Not one f them was called ESP32-CAM. Only two with CAM in the name and they don't work. Does anyone have any ideas?
AI Thinker ?
Why sdcard file system damaged sfter remove it from esp32cam
I'm the first
By the way, This is awesome tutorial
Take a shot every time he says esp32 cam
👍👍👍👍👍
great video. One annoying problem with this card is the use of a common GPIO pin for the LED flash and the SD card which means reading and writing to the SD will cause the LED to flash. Very annoying. Here is a hardware bit of surgery you can do to isolate the flash LED from the SD card (by cutting one surface mount resistor) and splicing it to the smaller LED's GPIO line (by cutting out the little surface mount LED).
th-cam.com/video/loet1ndG8Sg/w-d-xo.html
Hello, I never managed to get it to work and I bought several and each time it doesn't work on many videos you see that it's so easy but in truth it's not easy at all to ask yourself if the videos are real are stupid or a nice montage for idiots like me
🎯🎯🎯❤️🔥🔥🔥
Please, No "FTDI" ffs - a mere "usb-serial" will do. FTDI has displayed dodgy work-ethics and ought not to be needlessly popularized.
STM32 does much better.
Please explain. It doesn't have EEPROM or PSRAM or WiFi. Perhaps what model STM32 do you refer to?