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

  Рет қаралды 60,381

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!

Пікірлер: 145
@jse-shack825
@jse-shack825 6 ай бұрын
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 KZbin 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 8 ай бұрын
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!!
@c6jones720
@c6jones720 Ай бұрын
Not being able to debug an Arduino is a good enough reason to choose a different chip. This is a game changer
@VlasovDev
@VlasovDev Жыл бұрын
Just got recommended this video, wish you luck in your youtube journey!!
@MrKYT-gb8gs
@MrKYT-gb8gs Жыл бұрын
Like your style. Hope this channel becomes big.
@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
@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 9 ай бұрын
You need a hardware debugger, this video shows a software stub debugger.
@sviatoslavzapolskyi7986
@sviatoslavzapolskyi7986 8 ай бұрын
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 8 ай бұрын
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
@4000phil
@4000phil Жыл бұрын
short and to the point, that's the way I like it
@RafaelKarosuo
@RafaelKarosuo Жыл бұрын
Excellent!, thanks for asking the hard questions, why isn't anybody talking more about this?
@edsonlunyiliko664
@edsonlunyiliko664 10 ай бұрын
I like your presentations a lot!
@bdureau1
@bdureau1 Жыл бұрын
Excellent mate. You have talent please make it your daily job !!!!
@stevenbennett6123
@stevenbennett6123 18 күн бұрын
I am astonished that I did not know this is possible, OK it's not a true debugger but it does the one thing that helps debug code i.e. it stops at breakpoints. I rarely need to know the value of the Program Counter and Registers when debugging and if I do I can turn to an STM32 product plus CubeIDE, the only true debugger I have found to be trouble-free. Great video and yes the presentation is very watchable. A bonus was that after actioning all the steps in the video, it actually worked! I have just subscribed - thank you J. PS Just upgraded to the latest version of Jan Dolinay's software i.e. v1.5 and when hitting a breakpoint I can see the values of all 32 registers and the Program Counter and Stack Pointer, I can also add variables to the Watch list and see them change as the code is stepped and finally view memory after setting a start point e.g. 0x8000 and the number of bytes to display e.g. 10.
@fberron
@fberron 7 ай бұрын
Bless Jdolinay, and Bless you. It's amazing!!! I need it that! Thank you
@Bicycleworkshop
@Bicycleworkshop 2 ай бұрын
Thanks, bro! You saved me a lot of time.
@fjdarling
@fjdarling 10 ай бұрын
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.
@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.
@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)
@todomecatronica
@todomecatronica Жыл бұрын
Gracias !!! Realmente lo adoré !!! Gran Vídeo !!!
@yhungp
@yhungp Жыл бұрын
The most useful video I've ever seen, thanks 🤩🤩🤩🤩🤩🤩
@jmendowski
@jmendowski 8 ай бұрын
Best arduino tutorial ever 😂😂😂😂😂😂😂 You nailed it mate. 🎉
@Xavus-137
@Xavus-137 Жыл бұрын
Just getting started , I don't know what he was doing but sounds cool
@zacharyrowden7692
@zacharyrowden7692 10 ай бұрын
damn who would have thought I'd be genuinely laughing while watching an arduino debug tutorial 🤣subscribed
@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...
@robertjohnson4089
@robertjohnson4089 Жыл бұрын
i hve tried using platform iio before ill try it again thanks for video
@willibaldkothgassner4383
@willibaldkothgassner4383 Жыл бұрын
Thank you, is a big help to me!
@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 9 ай бұрын
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.
@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 :-)
@alanhermosillo8176
@alanhermosillo8176 Жыл бұрын
36 subscriber, what a wonderful video :D
@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.
@felipevellasco6526
@felipevellasco6526 Жыл бұрын
I think you just saved my life.
@athotuan1758
@athotuan1758 9 ай бұрын
Thanks for sharing this
@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.
@josephchamness9915
@josephchamness9915 Жыл бұрын
How many resources (flash & ram) does it use & can you look at vars, registers and the ASM?
@iam5085
@iam5085 4 ай бұрын
Amazing. Can I do c# too, or is that too much to ask?
@pinnaclesystemsgroup6472
@pinnaclesystemsgroup6472 Жыл бұрын
Very cool ... thank you
@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
@raffyturc
@raffyturc Жыл бұрын
thank you! I need to use this debugging naw 😊
@alexfish7792
@alexfish7792 Жыл бұрын
You're actually really funny. Love it. 3:59 😂
@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
@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 11 ай бұрын
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
@Farcraft2
@Farcraft2 Жыл бұрын
pretty cool bruv 👌
@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.
@user-zn9op3ti6g
@user-zn9op3ti6g 3 ай бұрын
you remind me of one of the hackers from the film skyscraper on netflix
@TFlorian
@TFlorian Жыл бұрын
hwy ? May be due to the footprint in the memory for debuginf stack .. But it's is very interesting tool set
@jimsnodgrass8454
@jimsnodgrass8454 Жыл бұрын
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) .
@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?
@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😄
@gamingSlasher
@gamingSlasher 8 ай бұрын
Have started with esp32 and do not know much about arduino but how common is that ATmega328?
@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...
@bhupendersingh2604
@bhupendersingh2604 7 ай бұрын
how can we debug stm32 microcontrollers
@jawadtahmeed9854
@jawadtahmeed9854 Жыл бұрын
How to setup the DUE for debugging?
@drulli1
@drulli1 4 ай бұрын
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..
@arlievsky
@arlievsky 2 ай бұрын
could it be made to work with uno_r4_minima ? or do you know any software-only alternatives for this board?
@briannielsbergh
@briannielsbergh 11 ай бұрын
Can you inspect variable values, if not, it's kind of useless?
@davidhergueta2000
@davidhergueta2000 Жыл бұрын
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 :(
@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.
@m3chanist
@m3chanist Жыл бұрын
It's an ant, not an alien. Originating with the author, Ivan Kravets and his work with SmartAntHill.
@maximus6884
@maximus6884 Жыл бұрын
How do we install libraries?
@MS-fp5jq
@MS-fp5jq 4 ай бұрын
would this work with expressif nano esp32?
@kebabsharif9627
@kebabsharif9627 Жыл бұрын
Hello , i'm getting the following error: vs code could not find the specified task please help.
@marcelobenitezabc
@marcelobenitezabc Жыл бұрын
Is there a miracle chance that it works with esp32?
@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"
@user-rk9py5cp2q
@user-rk9py5cp2q 2 ай бұрын
anyway, this is f** amazing, thx bro👍
@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
@tematoscybersage5626
@tematoscybersage5626 6 ай бұрын
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.
@kristoffersunnhordvik7590
@kristoffersunnhordvik7590 3 ай бұрын
"Don´t be scared if you see this. Run.." (6:12)
@inkton
@inkton Жыл бұрын
Excellent presentation! How can you NOT subscribe?
@pascalcuzon9411
@pascalcuzon9411 6 ай бұрын
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 6 ай бұрын
Not sure if it applies to the S3, but I uploaded a video yesterday which deals with exactly that: ESP32 debugging
@JeanDAVID
@JeanDAVID 6 ай бұрын
What about ESP32 or ESP8266 ?
@microlatinamicrocontrol1240
@microlatinamicrocontrol1240 Жыл бұрын
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 2 ай бұрын
you made an error - debugger, not debbuger, that's why.
@brendon5553
@brendon5553 Жыл бұрын
Nice
@Karl_Levine
@Karl_Levine Жыл бұрын
Haha nice video.
@AJ-pg6pt
@AJ-pg6pt 10 ай бұрын
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
@JohnDoe-el5ir
@JohnDoe-el5ir 11 ай бұрын
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.
@laforetsolaire6978
@laforetsolaire6978 6 ай бұрын
Waaa Thanks
@hurbawoo
@hurbawoo 11 ай бұрын
An error occurred like "COM11, No such file or directory" I solved the problem by changing "COM11" to "\\.\COM11". Thanks for helpful video.
@yabincheng4171
@yabincheng4171 Жыл бұрын
Crazy
@grapes008
@grapes008 6 ай бұрын
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.
@antoniodomit2782
@antoniodomit2782 4 ай бұрын
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 2 ай бұрын
change COM9 to your own port...
@herrusulis9360
@herrusulis9360 6 ай бұрын
Can use the same debugging tools for ESP32 (Arduino framework)?
@jse-shack825
@jse-shack825 6 ай бұрын
Definitely NOT, but the ESP-debugging video will drop in a few days, stay tuned!
@haithamsungkar2683
@haithamsungkar2683 4 ай бұрын
Can't wait to see how to debug ESP without hardware 😃 Please let us know if the Video is uploaded
@z3my4l
@z3my4l 4 ай бұрын
What about variable values?
@user-ms3id7jv7v
@user-ms3id7jv7v 4 ай бұрын
Visual micro is better
@nathrm
@nathrm Ай бұрын
now i understand when my friend talk about bule pill.. this must be what their mean... :-P
@EVJ-World
@EVJ-World Жыл бұрын
Sorry, but not working :( Could you help me please in private?
@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
@binh6623
@binh6623 Жыл бұрын
muhahaha,great
@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 ????????.
@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.
@redcrafterlppa303
@redcrafterlppa303 Жыл бұрын
You complain that other solutions hide the debugging behind another tools. But then continue to represent a tool that does the same.
@TheJavaSync
@TheJavaSync Жыл бұрын
How about in micropython, pls 🙏 I used to print("blah blah blah... ") to find out - how far the code worked .. hhahaha
@suki4410
@suki4410 9 ай бұрын
Oh, my god! I think he said "microsoft" . I think, i will delete the internet.
@claushilman2703
@claushilman2703 26 күн бұрын
No,no, nothing from Microsoft, thanks.
@stingerutube
@stingerutube 6 ай бұрын
this is not debugging !!!!
@jse-shack825
@jse-shack825 6 ай бұрын
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 3 ай бұрын
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.
Tutorial: Visual Studio Code install PlatformIO IDE  extension
1:42
Я нашел кто меня пранкует!
00:51
Аришнев
Рет қаралды 4,7 МЛН
버블티로 체감되는 요즘 물가
00:16
진영민yeongmin
Рет қаралды 127 МЛН
REAL Debugging Arduino + ESP32 | JTAG Programmer
9:05
Electronoobs
Рет қаралды 17 М.
Optimizing Arduino Code: no setup(), no loop() ⛔
9:27
Wokwi
Рет қаралды 197 М.
I built my own computer. by hand.
13:03
jdh
Рет қаралды 1,1 МЛН
Rust on ESP32 - Getting started
14:09
Floodplain: Streaming, Rust and Embedded
Рет қаралды 20 М.
PlatformIO: All you need to know in 10 Minutes!
10:56
J's e-shack
Рет қаралды 295 М.
ESP32 - DEBUGGING your ESP-IDF code using JTAG [VS CODE]
19:53
A very comprehensive ESP32 Debugging Guide.
12:21
J's e-shack
Рет қаралды 10 М.
I tried the Cheapest Arduino Alternative (that Nobody heard of)
13:31
PlatformIO или прощай, Arduino IDE
35:23
Alex Morozov
Рет қаралды 156 М.
Как удвоить напряжение? #электроника #умножитель
1:00
Hi Dev! – Электроника
Рет қаралды 449 М.
Здесь упор в процессор
18:02
Рома, Просто Рома
Рет қаралды 336 М.
После ввода кода - протирайте панель
0:18
Up Your Brains
Рет қаралды 1,3 МЛН
Мой инст: denkiselef. Как забрать телефон через экран.
0:54