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

Поделиться
HTML-код
  • Опубликовано: 25 дек 2024

Комментарии • 159

  • @jse-shack825
    @jse-shack825  11 месяцев назад +16

    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!

    • @mrdkyzmrdany8742
      @mrdkyzmrdany8742 3 месяца назад

      Thx for mentioning it in the comment, but next time, this belongs in the parting words, IMO.
      Nice vid, were going to try PlatformIO anyways, oh so nice to see a way to debug 'on chip'.

  • @bijavix
    @bijavix Год назад +43

    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 Год назад +16

    This video deserves a lot more views. Alone his presentation skills are pure gold and very entertaining.

  • @Aj0nJon
    @Aj0nJon Год назад +13

    As much as I hate RUclips 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.

    • @eitantal726
      @eitantal726 Месяц назад

      The Arduino IDE works "OK" for 99% of cases where your code is 1-5 screens long. But yeah, if you're already used to VSCode, then yes, it will look like a toy

  • @4000phil
    @4000phil 2 года назад +6

    short and to the point, that's the way I like it

  • @youtubegoogle4163
    @youtubegoogle4163 2 года назад +9

    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. 🔥

  • @VlasovDev
    @VlasovDev 2 года назад +1

    Just got recommended this video, wish you luck in your youtube journey!!

  • @caper58
    @caper58 Год назад

    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!!

  • @andrewwatts1997
    @andrewwatts1997 Год назад +20

    Stepping through your program and adding breakpoints is a great start. But where do I view register contents, flags, timers etc etc ?

    • @nobytes2
      @nobytes2 Год назад +2

      You need a hardware debugger, this video shows a software stub debugger.

    • @sviatoslavzapolskyi7986
      @sviatoslavzapolskyi7986 Год назад +3

      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 Год назад +1

      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

  • @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

  • @Gengh13
    @Gengh13 Год назад +5

    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)

  • @Steven_Bennett_YT
    @Steven_Bennett_YT 6 месяцев назад

    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.

  • @MrKYT-gb8gs
    @MrKYT-gb8gs 2 года назад +1

    Like your style. Hope this channel becomes big.

  • @c6jones720
    @c6jones720 6 месяцев назад +4

    Not being able to debug an Arduino is a good enough reason to choose a different chip. This is a game changer

    • @eitantal726
      @eitantal726 Месяц назад

      99% of Arduino use-cases feature code that's so trivial there's no point in debugging it, so I can understand why there's no debugger. Don't let the 1% tyrannize the 99%

    • @justinc2633
      @justinc2633 15 дней назад

      @@eitantal726 if a debugger can save you 5 minutes of debugging then its worth having in the ide

  • @bdureau1
    @bdureau1 Год назад +2

    Excellent mate. You have talent please make it your daily job !!!!

  • @dimitrioskalfakis
    @dimitrioskalfakis Год назад +2

    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 :-)

  • @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...

  • @RafaelKarosuo
    @RafaelKarosuo Год назад

    Excellent!, thanks for asking the hard questions, why isn't anybody talking more about this?

  • @TrevorMakes
    @TrevorMakes Год назад +4

    I spent 20 years learning C++ so I could debug it in my head, when I could have just done this.

  • @edsonlunyiliko664
    @edsonlunyiliko664 Год назад

    I like your presentations a lot!

  • @Dizintegrator
    @Dizintegrator Год назад +3

    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 Год назад +2

      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 Год назад +2

      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

  • @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.

  • @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

  • @jmendowski
    @jmendowski Год назад

    Best arduino tutorial ever 😂😂😂😂😂😂😂 You nailed it mate. 🎉

  • @Bicycleworkshop
    @Bicycleworkshop 7 месяцев назад +1

    Thanks, bro!
    You saved me a lot of time.

  • @fberron
    @fberron Год назад

    Bless Jdolinay, and Bless you.
    It's amazing!!!
    I need it that! Thank you

  • @nicedev8189
    @nicedev8189 3 месяца назад

    Amazing intro I love it!

  • @georgeboydratcliff1036
    @georgeboydratcliff1036 2 года назад +4

    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 2 года назад

      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

  • @fjdarling
    @fjdarling Год назад

    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.

  • @m3chanist
    @m3chanist Год назад +1

    It's an ant, not an alien. Originating with the author, Ivan Kravets and his work with SmartAntHill.

  • @felipevellasco6526
    @felipevellasco6526 Год назад

    I think you just saved my life.

  • @yhungp
    @yhungp Год назад +1

    The most useful video I've ever seen, thanks 🤩🤩🤩🤩🤩🤩

  • @davidhergueta2000
    @davidhergueta2000 Год назад +1

    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 :(

  • @Xavus-137
    @Xavus-137 Год назад

    Just getting started , I don't know what he was doing but sounds cool

  • @zacharyrowden7692
    @zacharyrowden7692 Год назад

    damn who would have thought I'd be genuinely laughing while watching an arduino debug tutorial 🤣subscribed

  • @chrisalexthomas
    @chrisalexthomas Год назад +3

    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 Год назад +1

      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.

  • @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"

  • @drulli1
    @drulli1 10 месяцев назад

    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..

  • @alanhermosillo8176
    @alanhermosillo8176 2 года назад +1

    36 subscriber, what a wonderful video :D

  • @joseph9915
    @joseph9915 Год назад +1

    How many resources (flash & ram) does it use & can you look at vars, registers and the ASM?

  • @bruno_ricci
    @bruno_ricci Год назад +1

    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.

  • @yayser
    @yayser Год назад +1

    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?

  • @felixjaimealcojor929
    @felixjaimealcojor929 10 дней назад

    Why this is not working for me?. You must have installed arduino IDE 2.0, previous to run this debugging method?.
    i have donwload libraries and copy to include folder. Not debugging.
    Thanks in advanced for your prompt reply.

  • @pascalcuzon9411
    @pascalcuzon9411 11 месяцев назад

    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  11 месяцев назад

      Not sure if it applies to the S3, but I uploaded a video yesterday which deals with exactly that: ESP32 debugging

  • @briannielsbergh
    @briannielsbergh Год назад

    Can you inspect variable values, if not, it's kind of useless?

  • @iam5085
    @iam5085 10 месяцев назад

    Amazing. Can I do c# too, or is that too much to ask?

  • @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.

  • @gamingSlasher
    @gamingSlasher Год назад

    Have started with esp32 and do not know much about arduino but how common is that ATmega328?

  • @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.

  • @roberthoople
    @roberthoople Месяц назад

    Great video! Love the nerd energy.
    Unfortunately, however, it (and other comments) have only confirmed that software debugging is just not going to cut it for me anymore, and it's just time to move onto real hardware debugging.... I've avoided it for way too long, because it's going to require learning another new thing and spending more money, but my projects have grown to a higher level of complexity that Serial print "debugging" is only making worse. And so far, with these software stub debuggers, I'm seeing a lot of problems they just can't handle, especially if you're writing and debugging libraries. Plus, the whole idea of hidden code being added to my compile in the background, just doesn't sit well with me.
    Although, I do want to throw a bit of shade at Arduino here:
    I love arduino... I have their stickers on everything around here... But, the lack of a more sophisticated debugging system, built-in, is really disappointing. The fact that their official "debugging" is to suggest using Serial.print, is a little goofy actually, considering how big they are and how seriously they're used by some. Like, with all the new stuff they've added to recent board revisions, why they haven't just added a hardware debugger onto it is a little silly. It would only be an extra chip and a few components, because the MCU itself fully supports JTAG (hence why some boards even have the JTAG header on them).

  • @ForSynthsSake
    @ForSynthsSake 3 месяца назад

    One question: where do I find those .h files that you added?

  • @AJ-pg6pt
    @AJ-pg6pt Год назад

    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

  • @robertjohnson4089
    @robertjohnson4089 2 года назад

    i hve tried using platform iio before ill try it again thanks for video

  • @antoniodomit2782
    @antoniodomit2782 9 месяцев назад

    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 8 месяцев назад

      change COM9 to your own port...

  • @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...

  • @tematoscybersage5626
    @tematoscybersage5626 Год назад

    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.

  • @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) .

  • @todomecatronica
    @todomecatronica Год назад

    Gracias !!! Realmente lo adoré !!! Gran Vídeo !!!

  • @MS-fp5jq
    @MS-fp5jq 9 месяцев назад

    would this work with expressif nano esp32?

  • @new_to_this-d4c
    @new_to_this-d4c 8 месяцев назад

    you remind me of one of the hackers from the film skyscraper on netflix

  • @miguelzabala
    @miguelzabala 4 месяца назад

    How can I debug an ESP-01?

  • @bhupendersingh2604
    @bhupendersingh2604 Год назад

    how can we debug stm32 microcontrollers

  • @TFlorian
    @TFlorian Год назад

    hwy ?
    May be due to the footprint in the memory for debuginf stack ..
    But it's is very interesting tool set

  • @willibaldkothgassner4383
    @willibaldkothgassner4383 Год назад

    Thank you, is a big help to me!

  • @kebabsharif9627
    @kebabsharif9627 Год назад

    Hello , i'm getting the following error: vs code could not find the specified task please help.

  • @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😄

  • @alexfish7792
    @alexfish7792 Год назад

    You're actually really funny. Love it. 3:59 😂

  • @herrusulis9360
    @herrusulis9360 11 месяцев назад

    Can use the same debugging tools for ESP32 (Arduino framework)?

    • @jse-shack825
      @jse-shack825  11 месяцев назад

      Definitely NOT, but the ESP-debugging video will drop in a few days, stay tuned!

    • @haithamsungkar2683
      @haithamsungkar2683 10 месяцев назад

      Can't wait to see how to debug ESP without hardware 😃
      Please let us know if the Video is uploaded

  • @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 8 месяцев назад

      you made an error - debugger, not debbuger, that's why.

  • @techmakerandhacker7867
    @techmakerandhacker7867 Год назад +1

    amazing thanks for the help

  • @michaelpultas3825
    @michaelpultas3825 2 месяца назад

    Thank you a lot mr programmer :-)

  • @athotuan1758
    @athotuan1758 Год назад

    Thanks for sharing this

  • @JeanDAVID
    @JeanDAVID Год назад

    What about ESP32 or ESP8266 ?

  • @JohnDoe-el5ir
    @JohnDoe-el5ir Год назад

    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.

  • @marcelobenitezabc
    @marcelobenitezabc Год назад

    Is there a miracle chance that it works with esp32?

  • @maximus6884
    @maximus6884 Год назад

    How do we install libraries?

  • @kristoffersunnhordvik7590
    @kristoffersunnhordvik7590 8 месяцев назад

    "Don´t be scared if you see this. Run.." (6:12)

  • @Farcraft2
    @Farcraft2 Год назад

    pretty cool bruv 👌

  • @grapes008
    @grapes008 11 месяцев назад

    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.

  • @z3my4l
    @z3my4l 10 месяцев назад

    What about variable values?

  • @hurbawoo
    @hurbawoo Год назад

    An error occurred like "COM11, No such file or directory"
    I solved the problem by changing "COM11" to "\\.\COM11".
    Thanks for helpful video.

  • @pinnaclesystemsgroup6472
    @pinnaclesystemsgroup6472 Год назад

    Very cool ... thank you

  • @王楷-c7n
    @王楷-c7n 8 месяцев назад

    anyway, this is f** amazing, thx bro👍

  • @raffyturc
    @raffyturc Год назад

    thank you! I need to use this debugging naw 😊

  • @inkton
    @inkton Год назад +1

    Excellent presentation! How can you NOT subscribe?

  • @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  Год назад +2

      "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.

  • @baxter6504
    @baxter6504 Год назад

    This is simpler than debugging the ESP32 with the ESP-Prog. Why doesn't Arduino advertise this?!?!

  • @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 ????????.

  • @EVJ-World
    @EVJ-World Год назад

    Sorry, but not working :( Could you help me please in private?

  • @denzee1
    @denzee1 2 года назад

    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

  • @nathrm
    @nathrm 7 месяцев назад

    now i understand when my friend talk about bule pill.. this must be what their mean... :-P

  • @MagicJF
    @MagicJF Год назад

    Using micropython seems debbugable as well

  • @krystofvydra
    @krystofvydra 5 месяцев назад

    Bro what do you smoke

  • @mrdkyzmrdany8742
    @mrdkyzmrdany8742 3 месяца назад

    vscodium FTW.

  • @maksym.kyrylov
    @maksym.kyrylov Месяц назад

    90% of my projects named test😂

  • @laforetsolaire6978
    @laforetsolaire6978 11 месяцев назад

    Waaa Thanks

  • @Karl_Levine
    @Karl_Levine 2 года назад +1

    Haha nice video.

  • @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

  • @brendon5553
    @brendon5553 Год назад

    Nice