Dear FRIEND (FRIEND always with capital letters!) I had a lot of of trouble trying to program an ESP-01. Nothing works... Until I watch your video (this video here!!!) Thank you a lot! It was very gratefully to learn something new from you! THANK YOU!
@AIbeginsDotNet3 жыл бұрын
Glad to be of help! Good luck with your project!
@FBPrepping Жыл бұрын
Excelent explanation! it worked like a charm. Thanks you man! Greetings from my beloved, sunny Venezuela.
@melliflousbufo3 жыл бұрын
That is just awesome! Followed your instructions to the letter and it scans my wifi networks! Just amazing how much power is in such a tiny package - thanks so much for your video on this :)
@TheWaterman1000 Жыл бұрын
Thanks for the informative video. I'm running mint 21 for the sake of me won't install? The arudrino.
@rodrigocosta7108Ай бұрын
My friend, you saved me! Thank you so much!! Now, please tell me, how some people use this adapter to upload codes to esp01s without connecting GPIO0 to GND?
@KaraokeKarsten6 ай бұрын
You helped me so much! Greetings from Germany, my guy
@mugundhanramanujam1001 Жыл бұрын
THANK OU VERY MUCH FOR THE FIST TIME I LEARNING I HAVE SUCCESS FROM YOUR VIDEO
@blk86trk3 ай бұрын
You were very helpful and I programmed easily the first try...thank you
@尚彦大坪2 жыл бұрын
Thank you, you helped me a lot. Your method is the easiest to write and read.
@_AmHam_ Жыл бұрын
You're a savior! Thank you !
@paweek5540 Жыл бұрын
Worked like a charm, thank you!
@anyonecanmakeit7187 ай бұрын
Bro how to make static ip? Tell us about it also
@oldbear825 ай бұрын
thanks a lot. i have question.. and pls make new video for : easy way to connect between PC and ESP+Arduino for any cnc machine
@AIbeginsDotNet5 ай бұрын
Ah while I can’t promise the cnc machine part, communication between arduino and PC can be done a number of ways, serial com, ROS etc, thanks for the idea!
@jonathanmallia16082 ай бұрын
Thank you so much for sharing this video.
@RetroforfunАй бұрын
Thank you my friend!
@soon37942 жыл бұрын
You deserve a sub buddy, never knew a button would solve my wiring nightmare.
@espantalon2 жыл бұрын
It was easy to undestand and it works. Thanks.
@jackjanpour8532 Жыл бұрын
Very nice video. Thanks. Next video don't put any background music.
@michaelmcdermott38022 жыл бұрын
hello big chap. love the vids. subscribed. keep them coming
@tendtudo-hobbiestruquesman46722 жыл бұрын
Parabéns, pela primeira vez consegui ver minha placa funcionando, agora como faço para programa-la junto com o relé?
@AIbeginsDotNet2 жыл бұрын
Apologies, google translate did not work for me on this, can you post the question in english?
@Silkroad_trader10 ай бұрын
@@AIbeginsDotNetHello there, can I upload WLED on this board? And how to connect the pixel led strip??
@mmarmute2 жыл бұрын
Man! That's just awesome, thanks so much for the tips! God Bless you so much!
@victorhurtarte75632 жыл бұрын
Thanks for your very detailed instructions!
@mikhan8088 Жыл бұрын
When I go into the example in the file bar, I cant find ESP8266wifi. Please help me
@AIbeginsDotNet Жыл бұрын
The board manager might not have been configured properly, add the board url and you’ll see it appear in the examples
@amgmg25212 жыл бұрын
Good explanation. Please add more videos to the series.
@HanD_19643 жыл бұрын
Very clear explanation. Thx! It helps! Just one question. What about the driver for the programer? Can you explain that please i read a lot about incompatability.
@AIbeginsDotNet3 жыл бұрын
This programmer uses CH340 chipset for USB communication. You will find these on almost all the arduino clones in the market because of its low cost. You can find the link to the driver in the description. You don't need the drivers if you are using a linux based os like ubuntu. Thanks for the comment!
@HanD_19643 жыл бұрын
@@AIbeginsDotNet Thx! I’ll buy the module. If any questions, i’ll be back. 😄👍
@dels16015 ай бұрын
why can i upload program's wifi scan it's "a fatal error"?
@AIbeginsDotNet5 ай бұрын
@dels1601 Can you tell me in more detail?
@paulobarbosa52463 жыл бұрын
Hi! what is the part number of the USB programmer? Thank you.
@AIbeginsDotNet3 жыл бұрын
This programmer is kind of generic, a lot of vendors sell the same stuff under different names. You can find these on banggod or ali express, even amazon has some of them listed at a slightly higher price. All of them are based around CH340 chipset which is the low cost USB interface used in most of the arduino clones. Good luck with your project!
@stemup39673 жыл бұрын
How do I know if I already have ch340? Where to manage that?
@AIbeginsDotNet3 жыл бұрын
On windows, check out the device manager when you plug in the programmer, if there is no device called ch340 (or something similar) listed under the USB section you will need to install the driver. Check out the blog link given in the description and go to step 3 to find the link to the drivers. Good luck with your project!
@AIbeginsDotNet3 жыл бұрын
On windows, check out the device manager when you plug in the programmer, if there is no device called ch340 (or something similar) listed under the USB section you will need to install the driver. Check out the blog link given in the description and go to step 3 to find the link to the drivers. Good luck with your project!
@stemup39673 жыл бұрын
@@AIbeginsDotNet and now everything works out for me. Thanks man!
@tanapongpongnat85193 жыл бұрын
ESP-01 can store data in EEPROM? ,I want data to be kept in the event of a power outage.
@AIbeginsDotNet3 жыл бұрын
You can use SPIFFS to store data in the flash memory, I have used this concept in this video : kzbin.info/www/bejne/jXTXeah8j6preLM More information can be found here : arduino-esp8266.readthedocs.io/en/latest/filesystem.html Good luck with your project!
@crispychickenwing3 жыл бұрын
Can i use esp8266 together with a Bluetooth module in one arduino uno board
@AIbeginsDotNet3 жыл бұрын
Yes you can! You will have to use something called 'software serial'. Both the Bluetooth module and ESP01 will need serial pins (RX and TX) to work, but an UNO only has one hardware serial, so you will have to use 'software serial' library to make any two other pins behave like serial pins. More info on this link: www.arduino.cc/en/Reference/softwareSerial Though for a project that needs both Bluetooth and WiFi, I would recommend an ESP32 board, its even cheaper than an original UNO.
@crispychickenwing3 жыл бұрын
@@AIbeginsDotNet thank you! 😊
@andreamitchell47582 жыл бұрын
Soldering was not as easy as it looks better off to just order the right one from aliexpress in the 1st place I think it is about the same price ,I wish I knew this thing was not what I wanted before I ordered it , good thing I found this video I managed to get it done, but I still have not tested it yet though, soldering to the GPIO 0 pin was not easy ,I kept bridging pins whatever solder they use was not compatible with the solder I was using, I also wonder If I could have used the ground from where the USB connector is soldered to the board instead of the one on the header pin, it would have been a bit easier although for some reason I had much less trouble soldering to that GND pin than the GPIO 0 pin on the header I also used some hot glue and I mounted my microswitch on the side of the yellow header connector( at the bottom of it if the USB connector is facing to the left and the header is on your right) it fits perfectly there , this way while plugging in the board to the USB on the PC with your right hand you can very easily hold down the button with your thumb.
@AIbeginsDotNet2 жыл бұрын
I think using the usb ground would work, since the only requirement is pulling GPIO 0 to ground. And nice work with the placement of the switch, I might try it myself :)
@Rohitkumar-19943 жыл бұрын
i have module and same connections and still it is not working
@AIbeginsDotNet3 жыл бұрын
Can you describe the problem?
@Rohitkumar-19943 жыл бұрын
@@AIbeginsDotNet i have same module and it showing the code was uploaded but still my led is not blinking i checked as per your video everything is okk but still led not blinking
@AIbeginsDotNet3 жыл бұрын
@@Rohitkumar-1994 which sketch are you using? Try adding some serial messages in the code and see if they appear on the serial monitor. And always remove and replug the module (without pressing the button) after your code is uploaded.
@videos400582 жыл бұрын
what is this a wify module?
@AIbeginsDotNet2 жыл бұрын
ESP01 is a microcontroller with onboard wifi capabilities but it is also commonly used as a wifi module for other microcontrollers .
@videos400582 жыл бұрын
@@AIbeginsDotNet thank you so much dear sir for sharing some light on this head of mines:P I wonder what can be used for.
@ErickWendelAcademy3 жыл бұрын
thanks a lot!!
@serektaibah40913 жыл бұрын
is the USB communicator only used for programming ? and later you can just unplug the ESP-01 and put it in ur project or does it require the communicator with it ?
@AIbeginsDotNet3 жыл бұрын
The USB adapter is only required for programming, you can use the ESP01 in your own project independently. You can watch this video: kzbin.info/www/bejne/mHOwkoGkeLmLq80 where I have done exactly that. Good luck with your project!
@prakashdutt1520 Жыл бұрын
Thanks brother
@dogeeatsveggies3 жыл бұрын
i know esp8266 is really cute but its hard to operate unlike node mcu... but i really want to learn how to use esp8266
@AIbeginsDotNet3 жыл бұрын
Yeah, that's why I use it for permanent projects which only needs one or two IOs. For testing and prototyping though NodeMCU is much easier.
@8amonas3 жыл бұрын
I had some problems, and i just watched your vid and realized that i was choosing the wrong board-
@colucci.mechanical.engineer3 жыл бұрын
You are god! Perfect
@colucci.mechanical.engineer3 жыл бұрын
Please organize your videos in playlist. Cause you are Gona make a lot of this beauty full videos and we want to receive notification
@AIbeginsDotNet3 жыл бұрын
A bit disorganised right now, I will try to be more consistent. PS: This comment made my day! Thank you!
@colucci.mechanical.engineer3 жыл бұрын
@@AIbeginsDotNet you are great don’t stop you now 💪
@HanD_19643 жыл бұрын
Great explanation!
@f-rafal2 жыл бұрын
Thanks
@chethiyawijewickrama64253 жыл бұрын
Thanks, I worked...
@maazshaik65143 жыл бұрын
thank you sir it was working
@levangabuldani54323 жыл бұрын
Thank You!
@luxminelundeniya84353 жыл бұрын
Thank You So Much!!!.
@negatron58885 ай бұрын
thanks man
@markweber15342 жыл бұрын
thank you
@SobhitPanda3 жыл бұрын
You are really awesome 👍
@joaomede2 жыл бұрын
thanks
@ronaldmorrison27653 жыл бұрын
Your video tutorial helps a lot but the background music does not really enhance the experience. .
@AIbeginsDotNet3 жыл бұрын
Thanks for the feedback!
@georgerothbart62143 жыл бұрын
I agree. The music is super annoying and distracting and adds nothing to the presentation. Makes it hard to understand the speaker. Consider using voice only for the next video.
@AIbeginsDotNet3 жыл бұрын
@@georgerothbart6214 Yeah, it is kind of annoying in retrospective, I will tone it down in the future videos. Thanks for the feedback!
@ishaisadventures1196 Жыл бұрын
holy hell thank you you saved me hours of crawling the web
@giannirenna6477 Жыл бұрын
you saved me nightmares
@andrewgromow11122 жыл бұрын
спасибо друг
@Derkenblosh22 жыл бұрын
My 650 didn't need a transistor... In fact, when I wired with a transistor, it fried my esp01
@radeonblue18162 жыл бұрын
Thank you very much for the video. If you can make a video on how to use it with 'Arduino Uno' then it will really be helpful. Again, Thanks.
@bryanst.martin71343 жыл бұрын
Hard to follow you sir, too much background noise. It seems to be a good explanation, maybe I will just mute and read the CC text.
@AIbeginsDotNet3 жыл бұрын
My apologies, I have been told the background is too loud, I will work on that in the future videos. If you’d like, I have written a blog on it as well, kind of reads like a transcription, you can find the link in the description. Good luck with your projects!
@rhc93032 жыл бұрын
在中国这两个一起才1美元就能买到了
@AIbeginsDotNet2 жыл бұрын
That’s great! You don’t get them as cheap in India, import duties and stuff.
@k.H-Gaming2 жыл бұрын
حبيبي يهندي 2
@willance852 жыл бұрын
it's ESP-01S module, not ESP-01..
@HappyHermitt5 ай бұрын
I'm sure programming them is nearly identical. Mr. arrogant
@sultan7679 Жыл бұрын
thanks for the video... it worled... im using arduino 2.0.4