Honestly, I never have a clue what Ben is talking about or doing when it comes to any of the tech stuff he works on but he's still one of my favorite RUclipsrs just because of his personality, been subscribed for nearly a year now and I watch most of his vids just for his sense of humor and all the random hysterical things he says while he's working
Interesting! After using AVR's for my first few years in microcontrollers, I grew tired of their limitations and got into STM32, never looked back. If it is a must to solder one without a hot air station, I know there are some STM32s in SO8 and TSSOP14/20 packages, but to be absolutely fair - these particular parts don't contain DACs. But once you get into QFN packaged parts, it's like night and day in performance and peripherals plus they can get really small where it matters. I love that Single Wire Debug works on any STM32 with a $5 dongle I can get from mostly anywhere, Microchip used to price their not-so-great programmer way higher.
I have to say Atmel Start seems pretty cool. Nice way to lower the learning curve and get people started with all the features. I also imagine it must have been pretty fun to build it. :)
I really appreciate that Ben is not afraid to get his hands dirty, and doesn't assume that we are all 1st graders, because frankly I'm sick to death of seeing 'hello world' and 'blinky' tutorials with no followup. On this note, the ATTinys are a great fit, because they kind of force you to use the old grey matter in order to get them to do anything useful.
I've been bare metal programming the atmega chips for years now. I recently decided to try the stm32 but thought it was a bit complicated for me, so I bought a AVR128DA48 and this video really helped me figure out my way around the infrastructure. Thanks
It's very expensive watching your videos. Every time I do, I end up buying a whole lot of new stuff. This time I didn't even finish your video before placing another AliExpress order. Thanks Ben ;-)
43:00 Why is the `if (ringBuffer[txPointer]) { transmitByte(); ` portion required for the `uartSend()` function? The datasheet explicitly states that "DREIF is set after a reset to indicate that the Transmitter is ready" in section 24.5.5, so you don't actually need to have ever written to `USART0.TXDATAL` in order for the DRE interrupt to fire. By my reading, just setting `USART0.CTRLA |= USART_DREIE_bm;` _should_ immediately trigger the interrupt to run at that point if appropriate, which already performs that exact check first thing. The way this peripheral is meant to be used, you're supposed to just set DREIE any time you add a character to the send buffer, and then just immediately have the ISR pick the character back out of the buffer with zero delay if it's ready to send. And while that does end up shuffling that first character into an intermediate buffer one extra time even though you could've written it directly, that is actually *more efficient* than shuffling around all the data you need to even _check_ whether or not you need to. Here's how I'd do it: (EDIT: incorporated fix from @Mark S ) ``` #define BUF_POWER 5 #define BUF_SIZE (1
As written you've got a race condition in putc. WritePointer will actually load increment and store before ch is writen to the buffer. writePointer++ needs to be on the subsequent line.
@@ax13h Oh, good catch. Technically, before C++17 the update to `writePointer` and the write to the buffer were actually just unsequenced (which still isn't good), but yeah, since C++17, `writePointer` gets updated first: "17) In a subscript expression E1[E2], every value computation and side-effect of E1 is sequenced before every value computation and side effect of E2" (from en.cppreference.com/w/cpp/language/eval_order#:~:text=In%20a%20subscript%20expression )
Your indent style is the only one which should be acceptable! Thank's for pointing me to these new devices - I had no idea that they had launched a new series of ATtinys as well. I'll need to get some myself...
Hi, I would love to watch an in-depth guide/tutorial by you on these tinyAVR 1-series MCU's using both Atmel Studio and Atmel Start. Thanks for this informative video!
I guess from the praise for UPDI you haven't used debugWire. You could already program using only one wire, though from a quick glance maybe updi is faster. Debugwire wasn't on high end chips, it was on low pin count chips, including the attiny25 you were comparing to.
50:09 I much prefer datasheets that over explain the shit out of how it works as I have encountered datasheets that don't and it's a true nightmare to figure out. Like for example the W5100 Datasheet was not entirely clear that you cannot just set the index to how many bytes you wrote to memory. Instead you must first read the index, send the data starting at that index then add how many bytes you wrote to the index and write it back to the chip. You also have to detect if you have overflowed the page and if so wrap the data accordingly and calculate the index to the end of the page then add the rest of the value to the base page address.
Like you, I'm taking a stab at the ATTINY88. Got most of it to work somewhat, Using the Arduino IDE. I haven't tried Micro chip stuff yet. My show stopper so far is no RX/TX functions. Blink works, servos work, ect. . It also has no PORT id, and resets wildly with some Nano sketches.
Would love to see you put that smarmy Aussie in his place and do something with the 3 cent Padauk microcontroller. The world needs to see what someone from America's Canada can do.
Hi Ben, great video, Master of Microchip ATMEL, you can add other videos of this small and powerful microcontroller, also detail the tools (software and hardware) and codes used to start testing, unfortunately I still do not have the integrated one physically. Greetings.
At last! A low pin count micro with serial peripherals! Better late than never I suppose? Always puzzled me why they did not do this for making distributed individual sensors or actuators controlled by serial bus. Hook this up to a single microswitch and then wire your machine using I2C, or another serial bus.
@@BenHeckHacks Thanks for the response. I didn't think that I'd make a mistake like this, so I looked again. The ATtiny212/412 datasheet quite clearly states on page 1: Memories - 2/4KB In-system self-programmable Flash Memory - 64/128B EEPROM - 128/256B SRAM .... And for my ATTiny 412s, in the 'Device programmer' window of AtmelStudio7, (read with my Atmel-ICE), the 'Device Information' tab clearly states: Flash size: 4k EEPROM size: 256 bytes SRAM size: 256 bytes I'm inclined to believe the datasheet, though I haven't tried programming the "256 bytes" of EEPROM ... maybe I should.
Honestly, I never have a clue what Ben is talking about or doing when it comes to any of the tech stuff he works on but he's still one of my favorite RUclipsrs just because of his personality, been subscribed for nearly a year now and I watch most of his vids just for his sense of humor and all the random hysterical things he says while he's working
What's the name of the tool you used at 14:40 to generate the wave signal as an array? Great video! I love seeing the process of going through the datasheet and figuring out how the MCU works.
Thanks for the video, I'm not sure if I remember this right, but can't you Ctrl+Click on a variable or define to get to the definition ? Maybe not :) It's been a long time but I hope to get back to this kind of stuff soon! I made a little 3 button controller with an ATTiny85 for my monitor which would let you select VGA/DVI/HDMI without going through the menu by simulating button presses. Just as I was about to get the timing perfectly right, I somehow lost the code, but it still works most of the time.
26:07 We come for the tech, we stay for the silly Disney parodies hahahahaha :-D EDIT: 30:55 We also stay for the funny Canadian impressions hahaha, sounds like some sort of Aussie pirate that lived in rural Canada for a few years hahahahaha!
hmm I guess I could ask here, but I doubt I'll get a response. Anyone have any idea how I could control a 34v-ish motor from something like a raspberry pi or arduino?
Sure, you need an H-Bridge to supply the 34V to the motor and some optocouplers to hook it up to the Pi. You can then use a couple of 3V outputs from the Pi to control the motor direction and, if you use PWM outputs, you can control the speed too.
nice tip: analogx pcalc (search it, it's free), it lets you put in c expressions for hex/bit manipulation. Other than my gcc, this is the most used tool on my machine. (doesn't contain adware/bulls*, I have no relation to the author whatsoever - but I can imagine he's a great dude!)
Not on all chips. It's because you need different instructions to read program or data space. Some models have program memory accessible by data instructions.
Hey Microchip, if you're going to keep Atmel Studio, please PORT IT TO LINUX!! (Or make it work under WINE). MPLAB IDE may suck at the moment, but at least it runs on Linux. You might not have to use 12v programming to recover the reset/updi function if the pin is used for I/O, provided the fuse isn't the ONLY way to get pin io function. Not sure if the pin mux can override the fuses on that one. I've started fooling with the atmegaAVR128 series processors. They are similar to the new tiny series (Xmega / ARM CortexM derived). BTW Ben, can you put your code from this video up on Github or someplace? I'd like to steal (I mean BORROW) some of it. Thanks!
Honestly, I never have a clue what Ben is talking about or doing when it comes to any of the tech stuff he works on but he's still one of my favorite RUclipsrs just because of his personality, been subscribed for nearly a year now and I watch most of his vids just for his sense of humor and all the random hysterical things he says while he's working
I'm kind of curious, how much banging your head against the wall trying to figure out weird things do you do? Maybe It wasn't an issue in this project, but what about all of your projects generally speaking? The way you portray your work in video it seems you rarely run into an issue that isn't something you can fix in short order. How often do you spend 15 minutes, 30 minutes, 4 hours trying to figure out why something doesn't work? Maybe that'd be a cool idea for a video.
Just to kind of clarify a bit, I'm not talking about coming up with a method on how to complete a project, I'm talking about when you do something that you think should work without an issue but it's not producing the outcome you want. Just a dumb example say you hooked up an 8 pin IC with power on pins four and eight as is common (I could be getting those numbers wrong but I believe I'm not) but it turns out that you're supposed to apply power on say pins one and eight. Again it's a dumb example as I would imagine you would realize that almost instantly but that concept of doing something the way you believe is correct but turns out isn't and you have to go back and figure out why it's not.
Well with this project took me about 45 minutes to realize I was pulling Write Protect wrong. The magic of video editing works wonders! Usually most problems are "dumb problems" like that and I feel like "well there's an hour of my life I won't get back"
I like your references to Steve1989. I watch his videos from time to time just to hear him say "Let's get this out on a tray...NICE!"
That one surprised me. And I liked it! LOL
A proper 8 bit DAC is an amazing feature for such a small micro, ordered a few to play with.
Yeaaaah!
Getting pretty good at the Dave Jones impersonation 👍
It was pretty dead on! Totally pictured Dave there.
Now all he's missing is the crocodile dundee knife lol!
Honestly, I never have a clue what Ben is talking about or doing when it comes to any of the tech stuff he works on but he's still one of my favorite RUclipsrs just because of his personality, been subscribed for nearly a year now and I watch most of his vids just for his sense of humor and all the random hysterical things he says while he's working
Ben Heck's getting equipment from manufacturers again! This is an absolute win!
Interesting! After using AVR's for my first few years in microcontrollers, I grew tired of their limitations and got into STM32, never looked back. If it is a must to solder one without a hot air station, I know there are some STM32s in SO8 and TSSOP14/20 packages, but to be absolutely fair - these particular parts don't contain DACs. But once you get into QFN packaged parts, it's like night and day in performance and peripherals plus they can get really small where it matters. I love that Single Wire Debug works on any STM32 with a $5 dongle I can get from mostly anywhere, Microchip used to price their not-so-great programmer way higher.
I have to say Atmel Start seems pretty cool. Nice way to lower the learning curve and get people started with all the features.
I also imagine it must have been pretty fun to build it. :)
I really appreciate that Ben is not afraid to get his hands dirty, and doesn't assume that we are all 1st graders, because frankly I'm sick to death of seeing 'hello world' and 'blinky' tutorials with no followup.
On this note, the ATTinys are a great fit, because they kind of force you to use the old grey matter in order to get them to do anything useful.
You sure about that? You can use the Arduino framework with them.
8:10 Ben:"We want a division of 0"
Ariane 5: "What could possibly happen? ... Go on!"
Thanks for presenting these nice little buggers, Mr. Heck:)
I've been bare metal programming the atmega chips for years now. I recently decided to try the stm32 but thought it was a bit complicated for me, so I bought a AVR128DA48 and this video really helped me figure out my way around the infrastructure. Thanks
I love this microcontroller videos, great job!
Between you and Steve Burk, good sleeping material. Information, I learn something, and I rest well at night
It's very expensive watching your videos. Every time I do, I end up buying a whole lot of new stuff. This time I didn't even finish your video before placing another AliExpress order. Thanks Ben ;-)
Thanks for an excellent intro to this microcontroller family. I'm looking forward to your follow-on video(s).
43:00 Why is the `if (ringBuffer[txPointer]) { transmitByte(); ` portion required for the `uartSend()` function? The datasheet explicitly states that "DREIF is set after a reset to indicate that the Transmitter is ready" in section 24.5.5, so you don't actually need to have ever written to `USART0.TXDATAL` in order for the DRE interrupt to fire. By my reading, just setting `USART0.CTRLA |= USART_DREIE_bm;` _should_ immediately trigger the interrupt to run at that point if appropriate, which already performs that exact check first thing.
The way this peripheral is meant to be used, you're supposed to just set DREIE any time you add a character to the send buffer, and then just immediately have the ISR pick the character back out of the buffer with zero delay if it's ready to send. And while that does end up shuffling that first character into an intermediate buffer one extra time even though you could've written it directly, that is actually *more efficient* than shuffling around all the data you need to even _check_ whether or not you need to.
Here's how I'd do it:
(EDIT: incorporated fix from @Mark S )
```
#define BUF_POWER 5
#define BUF_SIZE (1
As written you've got a race condition in putc. WritePointer will actually load increment and store before ch is writen to the buffer. writePointer++ needs to be on the subsequent line.
@@ax13h Oh, good catch. Technically, before C++17 the update to `writePointer` and the write to the buffer were actually just unsequenced (which still isn't good), but yeah, since C++17, `writePointer` gets updated first:
"17) In a subscript expression E1[E2], every value computation and side-effect of E1 is sequenced before every value computation and side effect of E2"
(from en.cppreference.com/w/cpp/language/eval_order#:~:text=In%20a%20subscript%20expression )
Your indent style is the only one which should be acceptable!
Thank's for pointing me to these new devices - I had no idea that they had launched a new series of ATtinys as well. I'll need to get some myself...
since when "do we not have to do this progmem thing" in AVR GCC using Atmel Studio?
I heard the this new C89 thing has stuff like preprocessor defines and bit shifts so you don't have to put hand crafted hex values all over the place.
Hi, I would love to watch an in-depth guide/tutorial by you on these tinyAVR 1-series MCU's using both Atmel Studio and Atmel Start.
Thanks for this informative video!
I guess from the praise for UPDI you haven't used debugWire. You could already program using only one wire, though from a quick glance maybe updi is faster. Debugwire wasn't on high end chips, it was on low pin count chips, including the attiny25 you were comparing to.
Thanks for the introduction to Culvers! I am now addicted to the fries!
Your Canadian accent is like a mix of Canadian, Irish, and an old Amish man.
Is Candian though?
Edit: Oh, but the Canadian accent part...
He sounds a bit like me off-camera. I'm from Atlantic Canada.
I think the only Canadian he's met happened to be a Newfie!
So many accents in Canada... That's one I've never heard.
Yep I am from Wisconsin too lots of us pretty mixed together sounding.
50:09 I much prefer datasheets that over explain the shit out of how it works as I have encountered datasheets that don't and it's a true nightmare to figure out.
Like for example the W5100 Datasheet was not entirely clear that you cannot just set the index to how many bytes you wrote to memory. Instead you must first read the index, send the data starting at that index then add how many bytes you wrote to the index and write it back to the chip. You also have to detect if you have overflowed the page and if so wrap the data accordingly and calculate the index to the end of the page then add the rest of the value to the base page address.
what about making an attiny synth?
Like you, I'm taking a stab at the ATTINY88. Got most of it to work somewhat, Using the Arduino IDE. I haven't tried Micro chip stuff yet. My show stopper so far is no RX/TX functions. Blink works, servos work, ect. . It also has no PORT id, and resets wildly with some Nano sketches.
Wow... 9 minutes. A new PB!
Would love to see you put that smarmy Aussie in his place and do something with the 3 cent Padauk microcontroller. The world needs to see what someone from America's Canada can do.
Hi Could you explain and show the programming interface you used -thanks
"Please don´t get rid of Atmel Studio" :-D
*Atsmell
the latest downloads call it "Microchip studio" - it seems that they intend to keep it around...
That's not a sine of life, it is a square wave of life!
You took the words out of my mouth 😆
100% agree that hunchback is the best disney movie. My all time favorite glad to see ben has good taste
Hi Ben, great video, Master of Microchip ATMEL, you can add other videos of this small and powerful microcontroller, also detail the tools (software and hardware) and codes used to start testing, unfortunately I still do not have the integrated one physically. Greetings.
dave jones cameo at 28:32
nice to see someone else who uses the microntroller part number when creating a project name
I probably shouldn't encourage it, but the grandma skit had me rolling.
Great intro for new ATtiny 1 series. Do you have the code snippets available somewhere?
At last! A low pin count micro with serial peripherals! Better late than never I suppose? Always puzzled me why they did not do this for making distributed individual sensors or actuators controlled by serial bus. Hook this up to a single microswitch and then wire your machine using I2C, or another serial bus.
Quick question:
I have some ATTiny412 chips. My Atmel Ice from Atmel Studio 7, is reporting 256 bytes of EEPROM. Also, I notice that Ben, using ATTiny212 chips, is getting a reading of 128 Bytes. HOWEVER, the datasheet (© 2019 Microchip Technology Inc.), clearly shows "64/128B EEPROM" respectively for these controllers.
Anyone know why there is a discrepancy? And what the actual value should be?
Well there's RAM, flash (the code) and EEPROM. Perhaps you're getting them mixed up?
@@BenHeckHacks Thanks for the response.
I didn't think that I'd make a mistake like this, so I looked again.
The ATtiny212/412 datasheet quite clearly states on page 1:
Memories
- 2/4KB In-system self-programmable Flash Memory
- 64/128B EEPROM
- 128/256B SRAM
....
And for my ATTiny 412s, in the 'Device programmer' window of AtmelStudio7, (read with my Atmel-ICE), the 'Device Information' tab clearly states:
Flash size: 4k
EEPROM size: 256 bytes
SRAM size: 256 bytes
I'm inclined to believe the datasheet, though I haven't tried programming the "256 bytes" of EEPROM ... maybe I should.
17:19 Wait, how do you know my grandma? Did YOU program the chip??? You killed my grandma!!
Hey my grandma didn't die because of a chip failure! The kids chose to pull the plug! (well my mom didn't but she was out voted)
@@BenHeckHacks O.O so... you programmed your kids' brainchips, right? So technically you programmed chips that eventually made the decision...
This was like listening to Charlie Brown's teacher saying "wah-WAH-wah" except with occasional pop culture references. Still interesting though!
same here, didn't make any sense, until 48:30 with the Oled Screen
Honestly, I never have a clue what Ben is talking about or doing when it comes to any of the tech stuff he works on but he's still one of my favorite RUclipsrs just because of his personality, been subscribed for nearly a year now and I watch most of his vids just for his sense of humor and all the random hysterical things he says while he's working
Add an RC high-pass filter to the DAC's out and it will be cleaner.
What's the name of the tool you used at 14:40 to generate the wave signal as an array?
Great video! I love seeing the process of going through the datasheet and figuring out how the MCU works.
There better be cooking!
Skip @20:21 - @20:27 to avoid hearing rumblings of a lunch eaten, but alas, unfilmed.
Praise be to Jeebus. Comments keep Ben's algorithm a growin'
35:38 I like the bracket there :)
Thanks for the video, I'm not sure if I remember this right, but can't you Ctrl+Click on a variable or define to get to the definition ? Maybe not :)
It's been a long time but I hope to get back to this kind of stuff soon! I made a little 3 button controller with an ATTiny85 for my monitor which would let you select VGA/DVI/HDMI without going through the menu by simulating button presses. Just as I was about to get the timing perfectly right, I somehow lost the code, but it still works most of the time.
"good artists copy; great artists steal"...Jobs was quoting Pablo Picasso :-)
@4:54 that's a square wave of life, not a sine.
Sign of life
what kind of debugger have you used?
I wonder what all those squiggly red lines and dropdown list boxes are about?
Oh! Another syntax error. How'd that happen?
Unfortunately, there is no Linux version of Atmel Studio. There is an Eclipse plugin, but Eclipse has shown itself to be unreliable on my machines.
2:42 - You happen to be the world's foremost rockstar electronicist.
was the Canadian guy from Ireland? Nice chip
Thanx i'm a noob on the microcontrollers world and this video is useful
26:07 We come for the tech, we stay for the silly Disney parodies hahahahaha :-D
EDIT: 30:55 We also stay for the funny Canadian impressions hahaha, sounds like some sort of Aussie pirate that lived in rural Canada for a few years hahahahaha!
hmm I guess I could ask here, but I doubt I'll get a response. Anyone have any idea how I could control a 34v-ish motor from something like a raspberry pi or arduino?
Sure, you need an H-Bridge to supply the 34V to the motor and some optocouplers to hook it up to the Pi. You can then use a couple of 3V outputs from the Pi to control the motor direction and, if you use PWM outputs, you can control the speed too.
GIMME DA SCOPE, oh wait, wrong channel...
Every once in a while I know what he's taking about. It's at those times I feel smart, but two seconds later I'm right back to feeling dumb again.
Nice Dave Jones impersonation, I hope we get to see a Ben's impersonation 😂
😭😭😭
I cry, when I see delay() in interrupts
Wow! The chips themselves are nice and affordable, but that ATMEL ICE is a bit of a gouge!
have PickKit4
nice tip: analogx pcalc (search it, it's free), it lets you put in c expressions for hex/bit manipulation. Other than my gcc, this is the most used tool on my machine. (doesn't contain adware/bulls*, I have no relation to the author whatsoever - but I can imagine he's a great dude!)
If you're using the free version of AVR Studio and the GCC compiler, you still have to use PROGMEM 😭
Not on all chips. It's because you need different instructions to read program or data space. Some models have program memory accessible by data instructions.
Tiny84 and Tiny85 have debugwire IIRC
You're right, my bad!
I read it as Techno-Blog-y
And the Oscar goes to ... Ben
How did you make it so you have Atmel Studio and not Microchip Studio? My Atmel Studio said "hey! I'm Microchip Studio now".
By the magic of having installed it years ago!
@@BenHeckHacks Oh lol
Hey Microchip, if you're going to keep Atmel Studio, please PORT IT TO LINUX!! (Or make it work under WINE). MPLAB IDE may suck at the moment, but at least it runs on Linux.
You might not have to use 12v programming to recover the reset/updi function if the pin is used for I/O, provided the fuse isn't the ONLY way to get pin io function. Not sure if the pin mux can override the fuses on that one.
I've started fooling with the atmegaAVR128 series processors. They are similar to the new tiny series (Xmega / ARM CortexM derived).
BTW Ben, can you put your code from this video up on Github or someplace? I'd like to steal (I mean BORROW) some of it. Thanks!
Did anybody try the fish?
I dont know why avr 1 series not available in my country, no one buy,no one sell it. Atmega market only for m8,m328p,m128,m2560,t10,t13,t85, ...
4:55 "Looks like we have a sine of life"
Looks more like a square (wave) of life to me ;)
Liked and sub'd, been watching a heck of a time.
“Nice hiss!”
Underrated comment. :-)
AAAAAA { on the same line as the while... O M G !!! Ben Hack indeed
I got started with atmel
whats a microcontroller?
Trump's baby hands
A small computer on a single chip that is designed to be embedded into a system or product
I hope that the ISA is intact, bastard Microchip...
This was a fun one always tossing in random stuff fun listen.
Honestly, I never have a clue what Ben is talking about or doing when it comes to any of the tech stuff he works on but he's still one of my favorite RUclipsrs just because of his personality, been subscribed for nearly a year now and I watch most of his vids just for his sense of humor and all the random hysterical things he says while he's working
I love the reference at 3:15 ... those who know :)
HAHAHA Sams choice I2C love it!
I'm kind of curious, how much banging your head against the wall trying to figure out weird things do you do? Maybe It wasn't an issue in this project, but what about all of your projects generally speaking? The way you portray your work in video it seems you rarely run into an issue that isn't something you can fix in short order. How often do you spend 15 minutes, 30 minutes, 4 hours trying to figure out why something doesn't work? Maybe that'd be a cool idea for a video.
Just to kind of clarify a bit, I'm not talking about coming up with a method on how to complete a project, I'm talking about when you do something that you think should work without an issue but it's not producing the outcome you want. Just a dumb example say you hooked up an 8 pin IC with power on pins four and eight as is common (I could be getting those numbers wrong but I believe I'm not) but it turns out that you're supposed to apply power on say pins one and eight. Again it's a dumb example as I would imagine you would realize that almost instantly but that concept of doing something the way you believe is correct but turns out isn't and you have to go back and figure out why it's not.
Well with this project took me about 45 minutes to realize I was pulling Write Protect wrong. The magic of video editing works wonders! Usually most problems are "dumb problems" like that and I feel like "well there's an hour of my life I won't get back"
"I already did a couple tests off camera to make myself look smarter" 😂🤣. And everyone else but they won't admit it.
The first step to being intelligent to is know how dumb you are.
We need a spinoff show. Ben's Grandmama
I guess we could livestream her grave?
I wasn't aware microcontrollers had so many "pereferals"...
Guess I'm here early also man this is cool never knew about this
It is so painful to listen to you, when you have a lump in your throat :-(
Can I install linux on ur computer?
Steve1989 reference. Nice.
That awkward moment when you do a bunch of calculation live on camera and the answer is 69.
Hmm... 128 bytes RAM and 2K flash... a couple of shift registers, and you've got most of an Atari 2600 console right there... 🤔😁
4:48 Nooo! You said You'll use decimal here!
eeeeeeeeeeeeeeeeeeeeeeeeee... I'm with the angels now! lol
Doesn't run Crysis, maybe run Doom?
6
A.W.F.U.L.
"Please, Microchip! For the love of god, do not get rid of Atmel Studio! It is so much better than MPLab X..." Like!!! Subscribe!!!
Could have sworn you said "meaty pea eye" before your subtitle at the start.
Me gusta gutsa
Mix between Indian and Irish (Canadian)
I’m a master butcher and an amateur comp geek. Still not offended by your appropriate comment.
hi