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

Поделиться
HTML-код
  • Опубликовано: 3 окт 2024
  • Straight forward, no additional hardware, no BS. Debug your Arduino Uno or Nano (almost) out of the box!

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

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

    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 8 дней назад

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

    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!

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

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

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

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

    • @sviatoslavzapolskyi7986
      @sviatoslavzapolskyi7986 11 месяцев назад +2

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

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

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

  • @MrDelta22
    @MrDelta22 Год назад +15

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

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

    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.

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

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

    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.

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

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

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

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

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

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

  • @4000phil
    @4000phil Год назад +5

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

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

      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

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

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

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

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

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

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

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

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

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

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

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

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

    Excellent presentation! How can you NOT subscribe?

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

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

    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.

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

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

    could it be made to work with uno_r4_minima ? or do you know any software-only alternatives for this board?

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

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

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

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

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

    Oh, my god! I think he said "microsoft" . I think, i will delete the internet.

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

    36 subscriber, what a wonderful video :D

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

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

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

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

    how can we debug stm32 microcontrollers

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

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

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

    would this work with expressif nano esp32?

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

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

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

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

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

    No,no, nothing from Microsoft, thanks.

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

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

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

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

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

      change COM9 to your own port...

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

    How can I debug an ESP-01?

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

    What about ESP32 or ESP8266 ?

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

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

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

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

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

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

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

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

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

    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.

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

    Like your style. Hope this channel becomes big.

  • @nicedev8189
    @nicedev8189 20 дней назад

    Amazing intro I love it!

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

    How about in micropython, pls 🙏
    I used to print("blah blah blah... ") to find out - how far the code worked .. hhahaha

  • @mrdkyzmrdany8742
    @mrdkyzmrdany8742 8 дней назад

    vscodium FTW.

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

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

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

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

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

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

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

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

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

    amazing thanks for the help

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

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

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

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

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

    You complain that other solutions hide the debugging behind another tools. But then continue to represent a tool that does the same.

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

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

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

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

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

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

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

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

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

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

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

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

  • @ForSynthsSake
    @ForSynthsSake 11 дней назад

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

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

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

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

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

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

    Is there a miracle chance that it works with esp32?

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

    Using micropython seems debbugable as well

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

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

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

    thank you! I need to use this debugging naw 😊

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

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

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

    this is not debugging !!!!

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

      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.

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

    How to setup the DUE for debugging?

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

    I think you just saved my life.

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

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

    What about variable values?

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

    Thank you, is a big help to me!

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

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

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

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

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

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

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

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

    How do we install libraries?

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

    I like your presentations a lot!

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

    Thanks for sharing this

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

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

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

    pretty cool bruv 👌

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

    Very cool ... thank you

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

    Crazy

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

    Nice

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

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

    Bro what do you smoke

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

    Haha nice video.