Debugging the Arduino Uno or Nano! (No extra hardware needed!)

  Переглядів 55,490

J's e-shack

J's e-shack

Рік тому

Straight forward, no additional hardware, no BS. Debug your Arduino Uno or Nano (almost) out of the box!

КОМЕНТАРІ: 138
@jse-shack825
@jse-shack825 3 місяці тому
A little correction/notice: The debugger shown here is not a "true" hardware debugger, but an instance of GDB in combination with a little mediation program on your Arduino called a "stub". This means that a small portion of your uploaded firmware is only there to establish a connection between your internal program states and the serial terminal. This explains why starting the debugger is part of your code (see debug_init()) whereas a "true" debugger would manage all attachments to your chip from its own peripherals. You could say, the firmware is "aware" of the debugging when using a stub. This also means that a bit of memory will be inaccessible to you, because the stub needs it. If you were to upload a program that uses every byte of memory, you wouldn't be able to debug your program anymore, so keep that in mind. And even more so, since the stub uses serial, any printing won't be available. Happy debugging!
@bijavix
@bijavix Рік тому
I've been programing microcontrollers with arduino and platformIO for YEARS, but I wasn't even aware this could be posible to do. Also, great video, keep up!
@MrDelta22
@MrDelta22 Рік тому
This video deserves a lot more views. Alone his presentation skills are pure gold and very entertaining.
@Aj0nJon
@Aj0nJon Рік тому
As much as I hate UKposts algorithms as well as this platform, this time I was absolutely blessed with coming across this video. Thank you my dude! For quite some time I was thinking about using some normal IDE for Arduino projects, but was too lazy to actually look it up.
@youtubegoogle4163
@youtubegoogle4163 Рік тому
Such a great channel providing simple and useful knowledge... Feeling good to be your 23rd subscriber. You have my support ❤️, Please keep making videos like this. 🔥
@caper58
@caper58 5 місяців тому
A minute into your first video and I hit the subscribe button. Love your comunication skills, just the right amount of humor and explaination speed. Some of these you-who-tube creators talk sooooo slow... I guess they don't think I can hear very fast. You're awesome and thanks for posting!!
@VlasovDev
@VlasovDev Рік тому
Just got recommended this video, wish you luck in your youtube journey!!
@danwissler
@danwissler Рік тому
You made my day!!! Was just about to spend some more money for a EDBG device. Now I can afford to buy more tea... GREAT
@edsonlunyiliko664
@edsonlunyiliko664 8 місяців тому
I like your presentations a lot!
@MrKYT-gb8gs
@MrKYT-gb8gs Рік тому
Like your style. Hope this channel becomes big.
@RafaelKarosuo
@RafaelKarosuo Рік тому
Excellent!, thanks for asking the hard questions, why isn't anybody talking more about this?
@bdureau1
@bdureau1 Рік тому
Excellent mate. You have talent please make it your daily job !!!!
@4000phil
@4000phil Рік тому
short and to the point, that's the way I like it
@fberron
@fberron 4 місяці тому
Bless Jdolinay, and Bless you. It's amazing!!! I need it that! Thank you
@andrewwatts1997
@andrewwatts1997 Рік тому
Stepping through your program and adding breakpoints is a great start. But where do I view register contents, flags, timers etc etc ?
@nobytes2
@nobytes2 6 місяців тому
You need a hardware debugger, this video shows a software stub debugger.
@sviatoslavzapolskyi7986
@sviatoslavzapolskyi7986 6 місяців тому
on left hand side in middle you can see WATCH section, you can add PORTB PORTC or some other variable you want to see
@sviatoslavzapolskyi7986
@sviatoslavzapolskyi7986 6 місяців тому
As mentioned this is not real debug but software emulation of debug. Arduino cpu doesn't stop on breakpoints, and timers continue to count and no sence to try to watch timers. You can not debug your code that depends on timers count in this way. The solution could be, e.g you can mock millis() function in a way that it returns variable that is incremented each time when loop() function returns. So you can debug your code that call millis() function
@fjdarling
@fjdarling 8 місяців тому
Personality plus Mr. J's. Interesting programming direction using Visual Studio Code and Platform IO. You have my attention J. I might just try it. Thanks.
@athotuan1758
@athotuan1758 7 місяців тому
Thanks for sharing this
@zacharyrowden7692
@zacharyrowden7692 7 місяців тому
damn who would have thought I'd be genuinely laughing while watching an arduino debug tutorial 🤣subscribed
@jmendowski
@jmendowski 6 місяців тому
Best arduino tutorial ever 😂😂😂😂😂😂😂 You nailed it mate. 🎉
@Gengh13
@Gengh13 Рік тому
I wasn't aware of this, I'm not using the nano much lately because for a similar price there are far more capable alternatives but it is definitely a nice tool to have.
@ArtOfTheProblem
@ArtOfTheProblem Рік тому
what do you recommend? I just got started and I think I burnt my first nano on day 1
@Gengh13
@Gengh13 Рік тому
@@ArtOfTheProblem the "blue pill", ESP8266 or Esp32. All of them are cheap, available and far more capable than the nano.
@wojciechbajon
@wojciechbajon Рік тому
@@ArtOfTheProblem don't touch ESP8266. Of course you can use it if you know his big disadvantages... If you wan cheper option try Esp32-s2 in D1 style or esp32-c3 Mh-tiny. But for very beginig Esp32 NodeMcu compatibile board is best. BTW: WROWER version (with PSRAM) allows you use different programming languages (python, PHP, ...)
@wojciechbajon
@wojciechbajon Рік тому
For costless debugging I am ready to pay more.
@ArtOfTheProblem
@ArtOfTheProblem Рік тому
@@wojciechbajon thanks i'll give it a try, any other advice on IDE etc? (i'm doing with kids)
@yhungp
@yhungp Рік тому
The most useful video I've ever seen, thanks 🤩🤩🤩🤩🤩🤩
@pizzahut3001
@pizzahut3001 Рік тому
I'm glad it wasn't just me. I recreated exactly the start of this video just scrolling through google results trying to find some sane guide on how to debug and getting nowhere...
@todomecatronica
@todomecatronica Рік тому
Gracias !!! Realmente lo adoré !!! Gran Vídeo !!!
@IamTheHolypumpkin
@IamTheHolypumpkin Рік тому
While I do own an hardware debugger aka the atmel-ice with J-Link on backorder for a year now. This an easy way to debug for smaller projects. For a very complicated I wouldn't chose avr stub.
@bruno_ricci
@bruno_ricci Рік тому
Great! I've developed a whole project without knowing this was possible. As I got my UART port busy -which was my board main communication channel with other HW modules- I had to use a separate arduino as SPI-UART gateway, and sending those kind of "enter function 1!!!" "enter if" "enter else" texts over the console. Having known this, probably i'd have chosen another way of communication, freeing the UART for debugging. I also wonder why this is not ~basic primitive~ stuff along Arduino community! How can a novice learn without debugging? Thanks again for sharing this information.
@robertjohnson4089
@robertjohnson4089 Рік тому
i hve tried using platform iio before ill try it again thanks for video
@Xavus-137
@Xavus-137 Рік тому
Just getting started , I don't know what he was doing but sounds cool
@willibaldkothgassner4383
@willibaldkothgassner4383 Рік тому
Thank you, is a big help to me!
@priyamganguly
@priyamganguly Рік тому
Great thing. The debugger is especially important for beginners who are struggling with trying to understand the internal intricacies of how Aduino works.
@dimitrioskalfakis
@dimitrioskalfakis Рік тому
good presentation. sure, it works great with simple projects, standard libraries and standard cores but using it with complex projects fails more often than not and the configuration settings are a mesh.
@jse-shack825
@jse-shack825 Рік тому
That is true. As far as i understand this debugger is a bunch of bitbanging over the serial connection, which is very error prone, especially if the clock speed is high and the usb cable is long. Nevertheless, if you are planning on building a large project, you should consider moving away from Arduino anyways. STM for example has a great debugger. Works with the Arduino Framework as well.
@dimitrioskalfakis
@dimitrioskalfakis Рік тому
@@jse-shack825 10Q for the response. I have used STM products; their documentation is cryptic and their tools non intuitive. I have resulted in 'adopting' raspberry pi pico for my needs (i develop rpn programmable calculators) 'cause it is cheap and well documented. i love it. keep it up :-)
@techmakerandhacker7867
@techmakerandhacker7867 Рік тому
amazing thanks for the help
@TrevorMakes
@TrevorMakes Рік тому
I spent 20 years learning C++ so I could debug it in my head, when I could have just done this.
@alanhermosillo8176
@alanhermosillo8176 Рік тому
36 subscriber, what a wonderful video :D
@felipevellasco6526
@felipevellasco6526 10 місяців тому
I think you just saved my life.
@Dizintegrator
@Dizintegrator Рік тому
There's one hidden problem with this approach: is that it uses serial. Yes, the same serial many use to print out stuff or for communication with PC. So in case you need to debug and print to serial you will need a second arduino in passthrough mode (reset shorted to ground) and a bit of config definitions in platformiotxt.
@cbs1710
@cbs1710 Рік тому
Whoa, there! Could we get some more info on how to accomplish all that?
@Dizintegrator
@Dizintegrator Рік тому
@@cbs1710 Its relatively easy - you get the board you want to debug connected normally to PC via usb, then you take a regular uno and short reset pin to ground (effectively bypassing any sketch and processor it has), then connect it to the first board by pins 0 -> 0 and 1->1 (mine has them labeled rx to rx and tx to tx) and connect it to PC too via its respective USB port. In the end both boards should be connected to pc. After that you tell PIO to use first USB port to upload and second to debug. I think there are step-by-step guides you can google for it.
@JohnDoe-el5ir
@JohnDoe-el5ir 8 місяців тому
you don't have to. You can use second serial port and use serial port dongle on PC. I did it first time I discovered these limitations
@georgeboydratcliff1036
@georgeboydratcliff1036 Рік тому
What a great video ..... but never once have I managed to make this work! I'm on a Mac, I might try on a PC in case that's the problem!
@emaayan
@emaayan Рік тому
trying it now on a pc , getting .pioinit:13: Error in sourced command file: COM17: No such file or directory.
@jaydonovan4723
@jaydonovan4723 Рік тому
@@emaayan on silicon mini and don't get any errors, but nothing happening (blink merrily continues blinking despite having a red dot next to "delay(1000);" . I'm new to VS Code and PlatmorIO but good with embedded systems in general. Is there anyone willing to work with me on replicating on MacOS?"
@GaryMarkowski
@GaryMarkowski Рік тому
@@emaayan There are two reasons (maybe more) for this error message. 1) Ensure the COM port you specified in platformio.ini specifies the correct COM port that your Arduino is connected to. 2) If you happen to be using the ELEGOO version of the Arduino NANO, then this debugger won't work on this device. The ELEGOO version of the NANO uses a CH340 serial communication chip instead of the official Arduino FT232 chip. It does work on the ELEGOO version of the Arduino UNO.
@fjalarsigurdarson4862
@fjalarsigurdarson4862 Рік тому
Macs often have trouble connecting to nano clones
@AJ-pg6pt
@AJ-pg6pt 8 місяців тому
Very nice but a couple HUGE catches - serial port conflict mentioned previously AND breaks in SETUP are INGNORED. Inching closer to Atmel Studio every day
@iam5085
@iam5085 2 місяці тому
Amazing. Can I do c# too, or is that too much to ask?
@m3chanist
@m3chanist Рік тому
It's an ant, not an alien. Originating with the author, Ivan Kravets and his work with SmartAntHill.
@TFlorian
@TFlorian Рік тому
hwy ? May be due to the footprint in the memory for debuginf stack .. But it's is very interesting tool set
@chrisalexthomas
@chrisalexthomas Рік тому
That is remarkably simple. I thought you'd need to get one of those extra serial debugger modules to do this. I had no idea it would work out of the box. I wonder how many other devices you can do something similar with?
@nobytes2
@nobytes2 6 місяців тому
avr-stub is a software debugger, in most serious situations you would need a debugger like j-link. This is shown in the video in the arduino ide 2.0 features.
@josephchamness9915
@josephchamness9915 Рік тому
How many resources (flash & ram) does it use & can you look at vars, registers and the ASM?
@Farcraft2
@Farcraft2 Рік тому
pretty cool bruv 👌
@raffyturc
@raffyturc 10 місяців тому
thank you! I need to use this debugging naw 😊
@nWestie
@nWestie Рік тому
The 'So install this super useful library by *struggle to pronounce name*, anyways bless him' pretty much describes the entire open-source communinty
@pinnaclesystemsgroup6472
@pinnaclesystemsgroup6472 Рік тому
Very cool ... thank you
@drulli1
@drulli1 2 місяці тому
Hi, a breakpoint is usually used to read out the content of some variables, to understand where a mismatch in our coding is coming from. Can we monitor the value of variables with this "debugger-like" tool? I guess not..
@MhLiMz
@MhLiMz Рік тому
Toller Tipp, klasse Video. Vom Erzählstil her ein wenig wie Marti Fischer. Gefällt mir :-)
@jse-shack825
@jse-shack825 Рік тому
Der war definitiv der Held meiner Jugend😄
@jimsnodgrass8454
@jimsnodgrass8454 11 місяців тому
Will this debug work with ESP32 based chips & dev modules? I'd like to hear more about using it with these ESP devices ( if it's even possible) .
@alexfish7792
@alexfish7792 Рік тому
You're actually really funny. Love it. 3:59 😂
@jetamgamer
@jetamgamer Рік тому
Hi! So.. i have a question. In the first step you said to take arduino ide and throw it out of the window. How can i do that? i mean, i guess i can take apart my ssd and find where arduino files are, but i dont think that is the best idea.
@jawadtahmeed9854
@jawadtahmeed9854 Рік тому
How to setup the DUE for debugging?
@bhupendersingh2604
@bhupendersingh2604 4 місяці тому
how can we debug stm32 microcontrollers
@user-zn9op3ti6g
@user-zn9op3ti6g 18 днів тому
you remind me of one of the hackers from the film skyscraper on netflix
@tgirard123
@tgirard123 Рік тому
Just boards with the 328 chip? Is there a way to use platform IO with other boards and get debugging? That's pretty freaking limiting...
@miguelangelquerocorrales4214
@miguelangelquerocorrales4214 Рік тому
Thanks for the amazingly simple tutorial and the bits of comedy =P. If anyone is looking at this tutorial trying to use the same process to debug a Seeduino Nano device, you have to change the "env:" and "board =" fields to "nanoatmega328new" Also, if you are getting some issues with entering debug mode concerning "libncurses.so.5", just run this on your terminal: "sudo apt-get install libncurses5"
@gamingSlasher
@gamingSlasher 5 місяців тому
Have started with esp32 and do not know much about arduino but how common is that ATmega328?
@MS-fp5jq
@MS-fp5jq Місяць тому
would this work with expressif nano esp32?
@davidhergueta2000
@davidhergueta2000 10 місяців тому
Do you know if there's a tool to debug Arduino Nano 33 BLE? Cuz the microcontrolller it uses is not an AVR so I can't use this tutorial :(
@tematoscybersage5626
@tematoscybersage5626 4 місяці тому
thx, looks like cool. But does default debugger so bad? *find answer* it is strange, but it is not default feature of MC, you need or external debugger device, or MC with built in. Really strange, because there are all capabilities for communication. Anyway, that arduinos that has ESP32 has this ability in WIP, so I hope it will be able soon.
@JohnDoe-el5ir
@JohnDoe-el5ir 8 місяців тому
Quite cool, but it is still some kind of BS but not that big as Arduino IDE. Solution to this is to buy Pickit4 or Snap or ICD4 and import arduino project to MPLABX. Works very well on ANY atmega. Of course compiled program doesn't have bootloader anymore, unless you specify proper memory offset for compiled binary, to preserve that bootloader area and load bootloader binary during flashing as well. That way you can go back to Arduino IDE if needed. Or you can wipe bootloader and then restore it with programmer.
@maximus6884
@maximus6884 Рік тому
How do we install libraries?
@denzee1
@denzee1 Рік тому
There's a new arduino ide that comes with a debugger. I was hoping that the video was about that. Good video btw i leave at thmubs up
@kristoffersunnhordvik7590
@kristoffersunnhordvik7590 20 днів тому
"Don´t be scared if you see this. Run.." (6:12)
@user-rk9py5cp2q
@user-rk9py5cp2q 14 днів тому
anyway, this is f** amazing, thx bro👍
@pascalcuzon9411
@pascalcuzon9411 3 місяці тому
Hello , very interresting and simple. But it's Ok for your UNO or NANO. Do you have an example idem For ESP32-S3 witch include Board JTAG ? Thank You Very Much
@jse-shack825
@jse-shack825 3 місяці тому
Not sure if it applies to the S3, but I uploaded a video yesterday which deals with exactly that: ESP32 debugging
@briannielsbergh
@briannielsbergh 9 місяців тому
Can you inspect variable values, if not, it's kind of useless?
@arlievsky
@arlievsky 10 годин тому
could it be made to work with uno_r4_minima ? or do you know any software-only alternatives for this board?
@kebabsharif9627
@kebabsharif9627 Рік тому
Hello , i'm getting the following error: vs code could not find the specified task please help.
@yayser
@yayser Рік тому
Wow thats amazing. I actually came across people saying there is no debugging available for arduino uno or nano. How come is this thing even possible?
@marcelobenitezabc
@marcelobenitezabc Рік тому
Is there a miracle chance that it works with esp32?
@microlatinamicrocontrol1240
@microlatinamicrocontrol1240 11 місяців тому
Such an excellent explanation. Maybe you could guide me on this problem: Error: Could not find the package with 'jdolinay/avr-debbuger @ ~1.4' requirements for your system 'windows_amd64' .... and so #include's #include #include fail . Thanks anyway ! Greetings from Buenos Aires.
@catto88
@catto88 16 днів тому
you made an error - debugger, not debbuger, that's why.
@antoniodomit2782
@antoniodomit2782 Місяць тому
This looks great. but I haven't been able to make it work. It compiles well. Uloads well and the it says .pioinit:13: Error in sourced command file: COM9: No such file or directory. Can you help me? Thank you
@catto88
@catto88 16 днів тому
change COM9 to your own port...
@inkton
@inkton Рік тому
Excellent presentation! How can you NOT subscribe?
@grapes008
@grapes008 4 місяці тому
The only time that i have needed debugging like this was on an arduino mega (about 3 years ago). I have adopted putting serial prints into #ifdef debug with a #define debug to make it easy to disbale and enable anything used for development by commenting out the #define. the other nice thing about this, is it allows you to have multiple types of things sent if you have mulitple #define for various things. So you need data for calibration #define calibrate - then put the serial prints inside of an #ifdef...#endif. Need debuging type stuff, uncomment #define debug. Neeed calibration, uncoment that. need both - you know what to do.
@brendon5553
@brendon5553 Рік тому
Nice
@herrusulis9360
@herrusulis9360 3 місяці тому
Can use the same debugging tools for ESP32 (Arduino framework)?
@jse-shack825
@jse-shack825 3 місяці тому
Definitely NOT, but the ESP-debugging video will drop in a few days, stay tuned!
@haithamsungkar2683
@haithamsungkar2683 2 місяці тому
Can't wait to see how to debug ESP without hardware 😃 Please let us know if the Video is uploaded
@JeanDAVID
@JeanDAVID 4 місяці тому
What about ESP32 or ESP8266 ?
@Karl_Levine
@Karl_Levine Рік тому
Haha nice video.
@hurbawoo
@hurbawoo 9 місяців тому
An error occurred like "COM11, No such file or directory" I solved the problem by changing "COM11" to "\\.\COM11". Thanks for helpful video.
@z3my4l
@z3my4l 2 місяці тому
What about variable values?
@user-ms3id7jv7v
@user-ms3id7jv7v 2 місяці тому
Visual micro is better
@yabincheng4171
@yabincheng4171 Рік тому
Crazy
@eglintonflats
@eglintonflats Рік тому
...."Nobody is talking about it"... Because adults in the room use J-link (J-tag) instead which affords a boundary scanner as well. Once you use it you will never want to go back.
@jse-shack825
@jse-shack825 Рік тому
"Adults in the room" probably won't even use Arduino, let alone watch this video. The brackets in the title are there for a reason. Many novices get a classic Arduino model and find out about debugging sooner or later and then get let down by the fact that their device is not debug-ready out of the box without additional hardware. This video tells people about a free and easy to use debugger for exactly these 2 beginner models. As flawed and slow as this debugger is, it is far more approachable for novices than a +500$ J-link probe they a) know nothing about yet and b) most likely can't afford.
@BinderTronics
@BinderTronics Рік тому
@@jse-shack825 This "adult" is very amused by your videos. You can get a J-Link EDU for around $60 (current pricing). For ARM based chips there is also DAPLink debuggers available, even cheaper. This method is much better in terms of upfront cost. @eglintonflats Wat on this earth will a entry level want with a boundary scan.
@laforetsolaire6978
@laforetsolaire6978 4 місяці тому
Waaa Thanks
@baxter6504
@baxter6504 Рік тому
This is simpler than debugging the ESP32 with the ESP-Prog. Why doesn't Arduino advertise this?!?!
@MagicJF
@MagicJF Рік тому
Using micropython seems debbugable as well
@TheJavaSync
@TheJavaSync Рік тому
How about in micropython, pls 🙏 I used to print("blah blah blah... ") to find out - how far the code worked .. hhahaha
@joeking5211
@joeking5211 Рік тому
Such a shame, this does not work, gives error "Could not find the specified task." Are you really doing nothing else behind the scenes as have checked your vid slowly through to make sure all the syntax I have taken from your info is correct and still the same error, and yet your demo works, how can this be ????????.
@redcrafterlppa303
@redcrafterlppa303 Рік тому
You complain that other solutions hide the debugging behind another tools. But then continue to represent a tool that does the same.
@EVJ-World
@EVJ-World Рік тому
Sorry, but not working :( Could you help me please in private?
@binh6623
@binh6623 Рік тому
muhahaha,great
@suki4410
@suki4410 6 місяців тому
Oh, my god! I think he said "microsoft" . I think, i will delete the internet.
@stingerutube
@stingerutube 3 місяці тому
this is not debugging !!!!
@jse-shack825
@jse-shack825 3 місяці тому
It is software stub debugging, which is technically not debugging, but a) still more debugging than having to use Serial.print() and b) it might as well be debugging for somebody who only uses it for simple programs like many beginners do. And if you're not a beginner, then you probably know how to debug Arduinos with other methods. This video is aimed at somebody who has been fiddling around with Arduino for some time and still might be overwhelmed by the complexity of external debugging devices. Having less potent debugging but omitting extra hardware is a good trade-off for beginners.
@rickylarsen458
@rickylarsen458 Місяць тому
First of all, never code in arduino terms, only use anscci C, because in time critical applications you will have a large issue, Second, you will never have accesses to registers view, whitch is fundemental for debugging professional, so dont use this method, bye an Atmel Ice, get rid of the arduione bootloader, and code in Ansci C, the only way to do this right
@dineshvyas
@dineshvyas Рік тому
Don't over act and you may grow.
@lars-gunnartengerstrom8276
@lars-gunnartengerstrom8276 Рік тому
OK!! Tru To program a Hybrid..And Understand Librarys...??!
@feelthewyrd
@feelthewyrd 5 місяців тому
i really wanted this to work. debug not available for the arduino uno on the arduino ide. followed your instructions:- Configuring upload protocol... AVAILABLE: arduino CURRENT: upload_protocol = arduino Looking for upload port... Auto-detected: COM5 Uploading .pio\build\uno\firmware.hex avrdude: ser_open(): can't open device "\\.\COM5": Access is denied. it works fine from the arduino ide.
@feelthewyrd
@feelthewyrd 5 місяців тому
SOLVED .... DO NOT HAVE THE ARDUINO IDE OPEN TOO. arduino ide will work if vscode open but not the otherway around. CHEERS DUDE!
@jse-shack825
@jse-shack825 5 місяців тому
@@feelthewyrd Nice that you got it working. Any OS only allows one open connection to a serial port. This goes for any terminal program as well.
@feelthewyrd
@feelthewyrd 5 місяців тому
@@jse-shack825 thanks
PlatformIO: All you need to know in 10 Minutes!
10:56
J's e-shack
Переглядів 278 тис.
A very comprehensive ESP32 Debugging Guide.
12:21
J's e-shack
Переглядів 6 тис.
How to get a FREE HYPERCHARGE SKIN!
02:07
Brawl Stars
Переглядів 15 млн
😱СНЯЛ ФИКСИКОВ НА КАМЕРУ‼️
00:35
OMG DEN
Переглядів 1,4 млн
Этого От Него Никто Не Ожидал 😂
00:19
Глеб Рандалайнен
Переглядів 4,8 млн
REAL Debugging Arduino + ESP32 | JTAG Programmer
9:05
Electronoobs
Переглядів 14 тис.
Optimizing Arduino Code: no setup(), no loop() ⛔
9:27
Wokwi
Переглядів 188 тис.
Getting Started with PlatformIO
51:54
DroneBot Workshop
Переглядів 596 тис.
PlatformIO или прощай, Arduino IDE
35:23
Alex Morozov
Переглядів 154 тис.
Try these 16 Brilliant ESP32 projects!!!
11:18
ToP Projects Compilation
Переглядів 509 тис.
#224 🛑 STOP using Serial.print in your Arduino code! THIS is better.
26:39
Debugging Embedded Systems With GDB?
13:51
Jacob Sorber
Переглядів 40 тис.
Add USB To Your Electronics Projects! - The USB Protocol Explained
15:19
Revolutionize Your ESP32 Projects with Live GPIO Pin Monitoring!
8:08
The Last Outpost Workshop
Переглядів 139 тис.
КУПИЛ SAMSUNG GALAXY S24 ULTRA ЗА 88000 РУБЛЕЙ!
27:29
DimaViper
Переглядів 55 тис.
КУПИЛ SAMSUNG GALAXY S24 ULTRA ЗА 88000 РУБЛЕЙ!
27:29
DimaViper
Переглядів 55 тис.
''Бесплатные умные'' домофоны для глупых людей. За чей счет банкет?
12:48
Вадим Шегалов.Оккультные игры элиты
Переглядів 32 тис.
Как должен стоять ПК?
1:00
CompShop Shorts
Переглядів 696 тис.
🤯Самая КРУТАЯ Функция #shorts
0:58
YOLODROID
Переглядів 2,2 млн