Тёмный

The EASY Guide To Over-The-Air (OTA) Updates With ArduinoOTA 

Programming Electronics Academy
Подписаться 234 тыс.
Просмотров 25 тыс.
50% 1

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

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 76   
@anyhumble946
@anyhumble946 22 дня назад
its cool when we have to program multiple esp boards, multiple time. (may be programming 30 esp based sensor nodes)
@crissproduction
@crissproduction Год назад
Very informative - as always! Thank you
@programmingelectronics
@programmingelectronics Год назад
Thanks so much!
@johneagle4384
@johneagle4384 Год назад
Super! Thank you. Very interesting and useful at the same time.
@programmingelectronics
@programmingelectronics Год назад
Glad it was helpful! There is more functionality in that OTAlibrary than I dive into here, but hopefully I covered the basic enough.
@SONUKOL1
@SONUKOL1 Год назад
You explain very simply and easily ota update, can you rebuild it and update ota from internet
@programmingelectronics
@programmingelectronics Год назад
I'm exploring this right now - hope to have a video with the basics on something like this soon.
@KenRossPhotography
@KenRossPhotography 11 месяцев назад
Thanks! That answered several questions I had 😊 Something else I came upon recently that's not OTA but sort of related; I saw where someone had created a web page with an "install" button to do the initial deployment of the complied binary to a computer-connected ESP32. I thought this was such a great way to make it low friction for non-tech folks to install projects onto a device and I was wondering if you had a video that walked someone through setting up a deployment option like that.
@programmingelectronics
@programmingelectronics 11 месяцев назад
That sounds neat! I don't have any videos like that on the channel yet, but thanks for this content idea!
@wali7862
@wali7862 9 месяцев назад
​@@programmingelectronicskindly make one 😊
@Ahmedhkad
@Ahmedhkad Год назад
All my projects had ardunio Ota, when you used once no usb cable again, but I wounder how many times I can upload codes, is there a limit to overwrite code?
@programmingelectronics
@programmingelectronics Год назад
Great question!! The limit would be no different then when using a USB cable since the update is happening on flash memory,
@christiane321
@christiane321 Год назад
That is so COOL!
@programmingelectronics
@programmingelectronics Год назад
I agree!
@burhanuddinbhiwaniwala618
@burhanuddinbhiwaniwala618 Год назад
Your contents are very very informative....but I love watching your videos coz u explain it so well nd even your voice Is amazing
@programmingelectronics
@programmingelectronics Год назад
Thank you so much 😀 - really appreciate the kind words!
@HKGoldenMrA
@HKGoldenMrA Год назад
ArduinoOTA is super cool. I have a keyboard that can update the key mapping though bluetooth. Is it the same technique?
@programmingelectronics
@programmingelectronics Год назад
Great question! I'm not sure to be honest.
@mtraven23
@mtraven23 6 месяцев назад
does it keep that mapping after all power is lost? then at least some part is being flashed, probably not the whole esp32, just a specific partition. Which is what is actually happening here too, the flash is divided into partitions, 2 biggest are identical OTA0 OTA1. the new program is store, entirely on the other partition, before the flash happens..cause breaking connection during a flash is b...a...d.....bad! but your keyboard probably has another set of partitions for the mappings without having to disturb the main program memory .
@Mr31Vince
@Mr31Vince 10 месяцев назад
The computer you are uploading from can also be connected via ethernet rather than wifi to your router.
@programmingelectronics
@programmingelectronics 10 месяцев назад
Thanks for adding that!
@MrI8igmac
@MrI8igmac Месяц назад
Im working on a drone build, the hotkey boot is a real pain on my model. Nice video🎉
@programmingelectronics
@programmingelectronics 26 дней назад
Thanks for note!
@OFCIFR
@OFCIFR 4 месяца назад
The title is not a lie, thank you so much, it's working perfect and needs just two lines of code, I'm mindblown
@programmingelectronics
@programmingelectronics 3 месяца назад
Great!
@larsniklassonhede3798
@larsniklassonhede3798 5 месяцев назад
In ESP-NOW it's a WiFidisconnect so I belive that is the problem to use OTA here. I don't know how to get around it.
@leelipinski4667
@leelipinski4667 Год назад
Hey man. That was was amazing. I watched the 90 minute basic start up video first and came to this WiFi video as the Arduino copy board I bought is a Arduino WiFi board. So I thought this would be handy as my computer couldn't find any of my ports. Think its just the driver needs updating. Whilst that's updating I'm watching some more videos on my pad. Thanks for sharing 👍
@programmingelectronics
@programmingelectronics Год назад
I appreciate the feedback!
@ngobduong8066
@ngobduong8066 5 месяцев назад
I have some problem while using OTA with ethernet w5500
@zeeshanafridi798
@zeeshanafridi798 Год назад
Very well explained! and yea that troublshooting thing you explained is super helpful, I faced it numerous time. Thanks for making it super easy
@programmingelectronics
@programmingelectronics Год назад
Thanks Zeeshan! Nice write up on this article by the way!
@tharonerussianman
@tharonerussianman 2 месяца назад
Unfortunately, it gives me an error requesting ipv6 for some reason
@jrippon
@jrippon 11 месяцев назад
Thanks for a great instructional video. I'm wanting to try using OTA on the WeMos D1 mini (ESP8266). I understand the principles are the same but other videos I've watch about it (admittedly all of them several years old) refer to installing Python on the PC. Do you know if this is something that's still required for OTA on the ESP8266? Thanks.
@Sikuq
@Sikuq Год назад
Excellt step-by-step video. Got me up and running on my Adafruit ESP32 Feather in no time. On my IDE 2.2.2, I don't need to restart the IDE. Thank you so much.
@programmingelectronics
@programmingelectronics Год назад
Glad it helped!
@AntonySimkin
@AntonySimkin Месяц назад
Man! You videos are very well made. Good quality, good narrating, nice content. You deserve more subscribers! No doubt!
@programmingelectronics
@programmingelectronics Месяц назад
Thanks for the kind words!
@IceCreams62
@IceCreams62 Год назад
Hi. Why the OTA handle is not on setup ?
@programmingelectronics
@programmingelectronics Год назад
Great question! Since setup only runs once, the code that manages the actual OTA process wouldn't be able to run in the loop. At least that is my understanding.
@mr.bianchirider8126
@mr.bianchirider8126 Год назад
I get the same problem of having to restart the Arduino IDE or even restart the PC. The ease of not having to retrieve the MCU a plug it in versus restarting the IDE/PC is incidental. It’s a minor bug and one day, hopefully, an Arduino Guru will fix it.
@binisol7353
@binisol7353 6 месяцев назад
Great video but What if i was using Wifi Manager?
@Mr31Vince
@Mr31Vince 10 месяцев назад
I use ArduinoOTA all the time with my esp32 projects and it works even better with PlatformIO rather than the Arduino IDE. ArduinoOTA also works in parallel with ESP Now comms, but needs a few tweaks to work correctly.
@programmingelectronics
@programmingelectronics 10 месяцев назад
Thanks for passing this on!
@tonyhodgson6744
@tonyhodgson6744 7 месяцев назад
Hi, did you ever do a video that done OTA over cellular nedwork. ive got a sim7600e connected to my esp32 and would love an OTA over gprs cheers tony
@tonyhodgson6744
@tonyhodgson6744 11 месяцев назад
Hi, Got this working perfectly, thanks. now i need it to work over cellular network (4g). can anyone guide me to such a good guide as this one... cheers
@programmingelectronics
@programmingelectronics 11 месяцев назад
I'll see if I can add one! Thanks for the recommendation!
@TonyHodgson-e9q
@TonyHodgson-e9q 11 месяцев назад
Brilliant, thanks, look forward to seeing that. Ive got a sim7600e connected to my esp32....
@zlackbiro
@zlackbiro 9 месяцев назад
Can we do OTA using GSM module? 😂 That would be savage...
@dan_m320
@dan_m320 Год назад
Is it possible to upload the code trough internet (from a different network)?
@programmingelectronics
@programmingelectronics Год назад
Great question! I am curious of the same - if I can find something that looks reasonably approachable I'll post it for sure!
@jonathanm9436
@jonathanm9436 Год назад
Love your work man. And I really like having your face on the videos now too - you look at least as cool as your voice sounds! 😊😊 This OTA capability is fascinating. I've not used ESP32 yet, but you have piqued my interest so I'll be looking for any reason to replace my go-to Nano platform.
@programmingelectronics
@programmingelectronics Год назад
Thanks so much for watching! Arduino just came out with a Nano-ESP32 which I have been playing with some - they seem pretty nice so far.
@jonathanm9436
@jonathanm9436 Год назад
@@programmingelectronics - nice to know. Thanks!
@sathviksathish1450
@sathviksathish1450 Год назад
OTA is cool I am working on a project where WiFi network are diff how can i upload the updates via cloud to esp32
@durairaj5747
@durairaj5747 10 месяцев назад
so simple tutorial very useful but one doubt whats that password stuff while uploading the sketch which password should i need to enter in to that? please help me im struc there.
@ernestoambroggio6334
@ernestoambroggio6334 9 месяцев назад
Great job! can it be done without being connected to the same network? i.e authomatic firmware/code update from different places
@juanperezgarcia9963
@juanperezgarcia9963 11 месяцев назад
Could you do ota updates over different networks through ethernet using arduino giga?
@fabianlam4992
@fabianlam4992 9 месяцев назад
Clean and clear explanation. Thank you so much!!
@programmingelectronics
@programmingelectronics 9 месяцев назад
Thanks!
@nidhansudharsan3135
@nidhansudharsan3135 Год назад
@programmingelectronics
@programmingelectronics Год назад
Thanks for watching!
@melvin-rh2gr
@melvin-rh2gr 9 месяцев назад
Hi i am using ESP wroom 32 to test OTA technology. So i have uploaded the code, since i don't have any other battery source, i am powering up esp board with another laptop source but in my laptop it is not showing network port. What could be the problem??
@programmingelectronics
@programmingelectronics 9 месяцев назад
Just to verify, both esp32 and the computer are connected to the same WiFI network? Can you verify that your ESP32 has connected (ie. are you printing out to your serial monitor that it has connected to the local WiFi?)
@melvin-rh2gr
@melvin-rh2gr 9 месяцев назад
@@programmingelectronics yes both esp32 and laptop is connected to same network
@melvin-rh2gr
@melvin-rh2gr 9 месяцев назад
This issue is solved. It was problem with the network, i tried connecting with another network. Now if i have to upload the code from distant place, what can be done(i.e. if i am not in the same network range) ?
@programmingelectronics
@programmingelectronics 9 месяцев назад
@@melvin-rh2gr Yes, can be done, but requires some additional steps, I'll see if I can make a video about it.
@norberthartmann5075
@norberthartmann5075 9 месяцев назад
nice stuff - but not stable....
@skeldon66
@skeldon66 3 месяца назад
Thanks
@programmingelectronics
@programmingelectronics 3 месяца назад
I hope it helped!
@tonyp4894
@tonyp4894 10 месяцев назад
Great Tutorial. One Question. I have three ESP32 Cams in different locations. I noticed that the OTA program sets the ip address of the network port. I have tried changing that address, but it would not change the IP address. How can i set the OTA initial code so that it will update to the right camera, and not accidentally erase the code of another camera? Thanks, Tony
@Mr31Vince
@Mr31Vince 10 месяцев назад
It's not the OTA that sets the IP address it's your router. The best way around this is to set a fixed IP address for each esp cam in the SetUp section of your Arduino code, then you can upload to each cam separately as required.
@ElvinAsadov.
@ElvinAsadov. 10 месяцев назад
just perfect no word
@programmingelectronics
@programmingelectronics 10 месяцев назад
Thanks!
@sabonimahmenna5920
@sabonimahmenna5920 9 месяцев назад
now you should delete the other video , it cost me another esp32 cause i thaught something was wrong with my first one
@programmingelectronics
@programmingelectronics 8 месяцев назад
Sorry about that!
Далее
The ESP32 Simulator you've been looking for!
8:04
Просмотров 26 тыс.
Iran launches wave of missiles at Israel
00:43
Просмотров 1 млн
Forget WiFi! This Wireless Method is WAY Better?
12:14
Просмотров 617 тыс.
ESP32 OTA via HTTPS
6:10
Просмотров 54 тыс.
ESPNOW mix with #ESP32 and #ESP8266
25:37
Просмотров 39 тыс.
ESP32 Guide 2024 | Choosing and Using an ESP32 Board
41:06
Programming ESP-12E / ESP-12F / NodeMCU Over Wi-Fi
9:49