Tap to unmute

Raspberry Pi Pico LCD Projects

  Рет қаралды 125,200

ExplainingComputers

ExplainingComputers

Күн бұрын

Пікірлер: 320
@mikebarrett2621
@mikebarrett2621 Жыл бұрын
Clarity to the max! No inane chatter, fooling around, high speed gabbling or frantic camera movements just articulate explanation and very clear illustrations - perfection. If all teachers had your abilities the world would be a very much better educated place. :)
@RoboNuggie
@RoboNuggie Жыл бұрын
Your enthusiasm when doing these projects is infectious... you can tell you love every minute :-) Thank you Chris, another great video!
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks for your support. I did indeed enjoy making this video. :)
@d.barnette2687
@d.barnette2687 Жыл бұрын
Greetings from across the pond near Albuquerque, New Mexico, USA. Another idea for this LCD1602: attach a laser module to the pico, set it up in a doorway, and count foot traffic. Also, with some reflective tape and a little programming, determine rpm's for a fan or even a hobby propeller, much like what you did with the weather vane. I think most might be surprised at how fast the pico can measure rotational speed. By the way, my intermittent contributions to this channel are always based on all your work, not just any one video. Thank you for working so hard to be such a great prof/instructor/teacher.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks for your support, much appreciated. I like your project ideas. :)
@travnewmatic
@travnewmatic Жыл бұрын
Long time listener, first time caller, recent supporter. Your videos are a joy to watch, and an excellent source of inspiration. Currently waiting for my Pico W and some accessories (breadboard, a display like the one in this video, some jumper wires) to be delivered. I can't wait! Thank you for sharing your passion with us!
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks for your support. Sounds like you have some happy Pico times ahead. Enjoy! :)
@robertofortuni6886
@robertofortuni6886 Жыл бұрын
Great to see you've taken into account the debouncing issue when dealing with button inputs!
@YateyTileEditor
@YateyTileEditor Жыл бұрын
I get that reference! **cough** Mr Eater **cough**
@fjl05
@fjl05 Жыл бұрын
How is the debouncing issue fixed?
@julianopificius6910
@julianopificius6910 3 ай бұрын
@@fjl05 The "while True" is a forever loop. The next "while loop" - "while switch.value()" - means that while the switch is pressed, do what is inside that loop, which is to increment the counter, update the display, and then execute the third "while loop". The third while loop checks to see if the the button has been released, then waits for a tenth of a second and checks again. If the button "bounces" open and closed, it will happen much faster than the tenth second delay, so the third while loop won't "see" the release. In this way, once the counter has been incremented and the counter value displayed, execution is "trapped" inside the third while loop, meaning that execution cannot continue until the button is released for a period of time exceeding a tenth of a second, which implements what we call a "debounce" function. The problem with this method is that execution is trapped inside that inner loop, and nothing else gets done. This is fine for a simple demonstrator, but in the real world - or more precisely, in a real-time application - we couldn't accept the processor simply sitting and waiting for the operator to release the button, because nothing else would get done while the button is down. In the real world, we'd either use a hardware debounce circuit, or use an external timer/scheduler loop to poll the button periodically and wait for it to be released before accepting further down conditions, or use a hardware edge-triggered interrupt driven by the button... the last two creating what is referred to as an event-driven mechanism. It would depend on the broader structure of the program, and the processor structure. An Arduino would lend itself to a hardware interrupt solution, but I don't know if the OS on the Pi would take too kindly to that. Again, this is a perfectly reasonable demonstration, but in a real application with other things for the processor to do, you'd want to choose a method that permits continuous, uninterrupted code execution.
@jaffarbh
@jaffarbh Жыл бұрын
The Pico is a natural twin to this display and can be used together in many real-world applications. Thank for sharing the base code Chris. Will make our lives easier when experimenting.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks. :)
@fram1111
@fram1111 Жыл бұрын
Good lungs on you not to mention your brain housing group appears to be working exceptionally well. Love how you leave the projects open so others will need to use their creativity to finish a project. Plus the vast amount of recourses you provide us. Until next time keep your gears spinning. Thank you.
@josmoify
@josmoify Жыл бұрын
Using one on my early rp vintage internet radio build for some years now,it never skipped a beat .
@wayland7150
@wayland7150 Жыл бұрын
Nice to see a 35 year old display being used on a modern build.
@bereck7735
@bereck7735 Жыл бұрын
​@Win32applicationMost high end displays tend to work very well, including high refresh rate and modern display type ( OLEDS, Minileds ) etc etc and they are pricy for that reason, high refresh rate displays and they also deliver a much smoother experience, I wonder what monitor you had used that caused so much issues
@wayland7150
@wayland7150 Жыл бұрын
@Win32application I bought 6 of those Dell 24" screen this month! Got three on my computer.
@JamesMiller-ex3ff
@JamesMiller-ex3ff Жыл бұрын
@@wayland7150 How many do you go through a year?
@wayland7150
@wayland7150 Жыл бұрын
@@JamesMiller-ex3ff Go through? No, I set up a customer with two screens and set myself up with three screens and sold one with a gaming PC.
@JamesMiller-ex3ff
@JamesMiller-ex3ff Жыл бұрын
@@wayland7150 Aww, here's me thinking the other 3 were backups for the rage-induced destruction of the first 3
@qzorn4440
@qzorn4440 Жыл бұрын
The best thing about the Raspberry Pi SBC is that they have examples that work. The RPi spin-offs are a waste of time if there are no working examples for dummies like me. 😎 Great Video as always. Thank you.
@ZenithMusicNet
@ZenithMusicNet Жыл бұрын
Brings me back to our LCD school project, that a classmate and I made 23 years ago. Back then we used the pc serial port, Pascal, and a self-designed pcb board. It was so much fun!
@garyplewa9277
@garyplewa9277 2 ай бұрын
Thank you for making this video. I purchased one of these Waveshare LCD displays and could not get it working as the many other online examples were for different devices and were confusing at best. You sir, explain things clearly without any unnecessary drama.
@bobrowles43
@bobrowles43 Жыл бұрын
Thank you for the content. There seem to me endless number of channels covering Ardunio on KZbin but not many that cater to the pico. I've been working with the pico quite a bit over the last couple of years. Please continue to generating content on the pico and its applications with sensors / motors etc....
@canonwright8397
@canonwright8397 Жыл бұрын
Another delightful video. I try to tune in every Sunday because EC feels a little like attending Sunday mass, for me. If you like, have a wonderful day.☕🙂
@grandrapids57
@grandrapids57 Жыл бұрын
The clean presentation and methods of production on this channel are paradigms
@ahmad-murery
@ahmad-murery Жыл бұрын
Besides reading the wind speed we can also read the temperature, the humidity, precipitation and we'll have a full weather station, we can utilize this push button to cycle through all different readings. But since I walk a lot I think I can find a way to count my steps. as always, that was a very nice project Thanks Chris!
@DFX2KX
@DFX2KX Жыл бұрын
there's a few different ways one could count their steps, the cheap/easy/old-school way would be to use a weight hitting a microswitch and then a similar count program. measure your stride length and get distance too. though modern pedometers (like the one inside my smartwatch) use a 6-axis Gyro/Accelerometer, which is also doable.
@ahmad-murery
@ahmad-murery Жыл бұрын
​@@DFX2KX Since I like simplicity I think the weight with a microswitch is my way to go. Thanks!
@PeterJasper
@PeterJasper Жыл бұрын
Thanks for another great video and project. It is great to revisit and expand on old projects as well.
@iandron7119
@iandron7119 Жыл бұрын
Thanks Christopher, great video. It was nice to hear from Mr Scissors and Stanley the Knife even though they weren't needed for the unboxing.
@deepstateagent5150
@deepstateagent5150 Жыл бұрын
I look forward to your videos every Sunday morning. Keep up the great work Chris
@Rushil69420
@Rushil69420 9 ай бұрын
I just impulse bought another Pico W at Micro Center *yesterday* and happened to find an 1602 lcd module from an old Arduino starter kit kicking around last week - this video could not have come at a better time!
@johandeklein5253
@johandeklein5253 Жыл бұрын
love to see little project using these little computers. Thanks for sharing, greetings from Missouri/USA.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Greetings from the UK. :)
@maxpolaris99
@maxpolaris99 Жыл бұрын
The brass screw and putty esthetic on the anemometer just blew my socks off.👍
@ExplainingComputers
@ExplainingComputers Жыл бұрын
:)
@perrymcclusky4695
@perrymcclusky4695 Жыл бұрын
I’ve always been curious about those LCD modules. I thank you for the demonstration. A very impressive item. Looking forward to your next video!
@wayland7150
@wayland7150 Жыл бұрын
8 bit or 4 pit interface. on the standard ones. They've been around for decades. there are better displays available today.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks Perry. :)
@volvo09
@volvo09 Жыл бұрын
I built a parallel display for my computer years ago, plugs into the parallel port and would display system stats, song info, whatever you wanted. It was neat to play with, I still have it in a box.
@perrymcclusky4695
@perrymcclusky4695 Жыл бұрын
@@wayland7150 I have a vintage Radio Shack Pocket Computer. It has a similar small LCD module. Yes, the modules have been around awhile.
@perrymcclusky4695
@perrymcclusky4695 Жыл бұрын
@@volvo09 Awesome project. I should try something like that.
@Kw1161
@Kw1161 Жыл бұрын
Thanks Chris for this informative video. Nice to see a little love for Mr Scissors and Stanley the Knife Now my suggestion for useful project for you; Create a staging directions for your Ducks and other wildlife.. while you are filming them....:)! Your anemometer brought back bad memories while helping change them 200+ feet above the harbor in St Thomas Virgin Islands while in the US Navy back in the early eighties.....the frame seemed to unstable and rocked too much for me. Have a nice week. .
@rdhunkins
@rdhunkins Жыл бұрын
Ah, the good old 160X LCD displays. First one I got didn’t have an I2C interface. Very clunky to set up, but I managed. Then found out about I2C. So much easier! Useful little things for simple text based displays.
@pavan13
@pavan13 Жыл бұрын
That measuring the wind was awesome
@rickster2317
@rickster2317 Жыл бұрын
Great Video Chris! A real walk down memory lane with the 1602 LCD display. My 1st micro project was with a PICAXE micro,and 1602, around 10 years ago. I ended up using a pin and code compatible OLED for a much better visual with no backlight, but I have used the 1602 with many projects since then. Nice to see how useful they are. Thanks for the modern adaptation of an old reliable (and inexpensive) display.
@chriholt
@chriholt Жыл бұрын
What fun adding that little LCD! Can't wait to see what else you come up with :)
@zaksept
@zaksept Жыл бұрын
Great video. I would love to see more projects on your channel. SBC reviews are great but the other side of the coin is actually seeing what can be done with them .
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks, and noted. :)
@ObsidianMercian
@ObsidianMercian Жыл бұрын
Fantastic video Chris! You have given me some inspiration for projects to do with my children during the upcoming summer holidays.
@danielpicassomunoz2752
@danielpicassomunoz2752 Жыл бұрын
This brought me back to my highschool electonics workshops, thanks! Great content, as always!
@DRussell8473
@DRussell8473 Жыл бұрын
I love these project videos. Thanks for making tinkering fun!
@mikefinn2101
@mikefinn2101 Жыл бұрын
Nice change in menu and nice to add a LCD screen for a change i like it. Love how you easily teach us students. it is fun Peter you are just KIND and Amazing so great full to you
@montecorbit8280
@montecorbit8280 Жыл бұрын
At 10:42 Most exciting game in the whole world.... I thought you were going to play Tyrian or EverQuest on it!!!! You did fail to find out the most important question though. That question is, "Can it play Crisis??" *runs off laughing*
@PS_Tube
@PS_Tube Жыл бұрын
Greetings. As soon as you opened the tiny display, first thought that popped was nice display to be used in pico weather project ! And there that was at the end. Interesting video as always. 👍 Thank you.
@CASIOTRON
@CASIOTRON Жыл бұрын
Greetings from Bucharest Romania ! Soon on your way to 1,000,000 subscribers !
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Greetings! And fingers crossed for the 1M subs. :)
@liontuga155
@liontuga155 Жыл бұрын
Does it game?! Are you kidding? “Push That Button” by EC Studios is already #1 on my Steam wishlist! :-) Thank you for another great video, Chris!
@AMDRADEONRUBY
@AMDRADEONRUBY Жыл бұрын
Crazy how rasp pie have many options making them versatile have a Nice week Christopher.
@gloiloidn5752
@gloiloidn5752 Жыл бұрын
The world's best game made me smile a lot! 😂 Fantastic video!
@jordantheman25
@jordantheman25 Жыл бұрын
There are so many little LED, OLED, Etc displays for cheap these days, such a blessing.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Agreed!
@alanthornton3530
@alanthornton3530 Жыл бұрын
Thanks Chris for an interesting Sunday video. I thought of a perfect project for this on a model railway shunting layout :)
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Hi Alan. Always good when there are model railway possibilities. :)
@bcollinsks1
@bcollinsks1 Жыл бұрын
Great Content! I enjoyed this segment and look forward to playing with a few projects. Thanks for doing what you do, it is appreciated.
@dossaer
@dossaer Жыл бұрын
Thank you for including Mr Scissors & Stanley - especially when companies like Waveshare are trying to put him out of a job with their resealable bags. 😅
@edwardallenthree
@edwardallenthree Жыл бұрын
Wow! One of my earliest projects was building a parallel port interface for one of those LCD panels. It was to, obviously, report the song that my mp3 player was playing on the computer. This was a long time ago (around 2000 maybe a little earlier).
@stephenlewis9159
@stephenlewis9159 Жыл бұрын
I agree, this was most exciting. Thrilling, even. Enthused to try one out in my bionic arm.
@jerril42
@jerril42 Жыл бұрын
Thanks Chris. I like the single upside-down 2.2K resistor (@ 2:37). Just to drive some folks nuts. Take care.
@Oharafolk
@Oharafolk Жыл бұрын
Thank so much Chris, this video was very exciting!
@richards7909
@richards7909 Жыл бұрын
I was hoping for a game of rock, paper, Mr Scissors! Excellent video, enjoyed it :)
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Classic.
@ambigousBarrel
@ambigousBarrel Жыл бұрын
When I seen the button counting bit it made me think that would be useful in a scenario where you need to count your progress, like when following a knitting patern for instance :)
@patrpatl
@patrpatl Жыл бұрын
Nice LCD module. If I would take that to a project, would attach those LCDs to an air conditioner. So It can basically monitor the amount of electricity used and the literal price that we would pay for. Nice LCD and nice video.
@championslayers
@championslayers Жыл бұрын
I love little projects like these. I typically use 1 inch oled i2c displays for my projects. I can typically find them for less than $2 or $3 each.
@JohnPMiller
@JohnPMiller Жыл бұрын
I wish Amazon would sell their large, inexpensive Kindle E Ink displays for makers.
@srtcsb
@srtcsb Жыл бұрын
Very cool. Always enjoy your presentation. Thanks for another great video Chris. 😎👍
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks 👍
@nutsnproud6932
@nutsnproud6932 Жыл бұрын
Chris, I am going to dig out my Pico and make a weather station. The modules are pretty inexpensive. I am going to look for a wind direction thingy and have the LCD displaying temperature wind direction and speed, temperature and humidity in the lounge. A great summer project!
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Good luck with your project. :)
@anonylesss
@anonylesss Жыл бұрын
i think it would game better under coffee:) great video as usual
@Remigrator
@Remigrator Жыл бұрын
You are my favorite SBC 🤗
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks. ;)
@Praxibetel-Ix
@Praxibetel-Ix Жыл бұрын
I second that sentiment!
@rastan1977
@rastan1977 Жыл бұрын
I really like your videos.your very old English and have a way about you that inspires me to drink tea and learn. I have a feeling I will be my teacher. Just remember to respond to msgs to the best of your ability and refrain from becoming a KZbin hero
@marklucas8110
@marklucas8110 Жыл бұрын
Chris, you just need a sensor to measure moss density and get a pi controlled rover called 'Rolling Stone' to sort it out 😉 Great video as usual!
@ExplainingComputers
@ExplainingComputers Жыл бұрын
:)
@joeg3950
@joeg3950 Жыл бұрын
Thank you for the video. I may have a few ideas for this type of project. Maybe a weather station, or remote screen for heating system alerts… Cheers!
@TerraMagnus
@TerraMagnus Жыл бұрын
I enjoy watching your videos. I’m most interested in the SBC reviews. It would be really interesting to see cool projects with these boards, perhaps as a series. It would be really neat to partner with other channels that are way outside your wheelhouse. So like how about using an SBC as a controller board for a vintage motorbike project with a channel that builds bikes? Using an SBC to control a very novel set of lights for the bike to keep it safe and visible on the roadways. You mentioned maybe looking at ESP32. You could make content for months easily just scratching the surface with how these things are used. Especially if you start seeing it through with home automation use cases.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks for this. There are indeed many microcontroller and SBC project video possibilities. But I earn my living running this channel, so what is most critical is what the viewers want to watch. And sadly this kind of content does not pay my bills. Today I posted an Arduino video -- my first! But again, not that popular (so far). But I will always return to such content when I can. :)
@patrickthegoat
@patrickthegoat Жыл бұрын
I LOVE LOVE LOVE this video. Thank you again for the inspiration! Only thing is, all these videos aren’t very good for my bank account as I keep learning about new gizmos to use in new projects 😂
@johnjohnson2540
@johnjohnson2540 Жыл бұрын
Your clock script gave away how long you've been working on this video :)
@ExplainingComputers
@ExplainingComputers Жыл бұрын
:)
@johnjohnson2540
@johnjohnson2540 Жыл бұрын
@@ExplainingComputers Quick question--you measured in MPH and not meters per second...is this a nod to your target audience or is this a standard when measuring wind(not sure why it would be, but for some reason only our drug dealers and military use metric in the US, so you never know who uses what).
@ExplainingComputers
@ExplainingComputers Жыл бұрын
MPH is used in all weather forecasts and reporting in the UK. We are basically metric here, but all road signs (and hence distances) remain in miles.
@johnjohnson2540
@johnjohnson2540 Жыл бұрын
@@ExplainingComputers I had no idea! For some reason I thought America was the oddball country with its own way of measuring things. I had no clue that this was something we could blame on our "parents". :)
@anon_y_mousse
@anon_y_mousse Жыл бұрын
You could probably get more accuracy from your anemometer by using a bearing for the spindle and using a smaller point at the bottom and oiling it.
@HKey_Root
@HKey_Root Жыл бұрын
Love these projects. Thanks.
@koduflower2000
@koduflower2000 Жыл бұрын
Great video Chris! I really wanna buy this right now.
@jackburton8352
@jackburton8352 Жыл бұрын
Niche content is why i love this channel. Have a great day Chris.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks, you too! :)
@kevinshumaker3753
@kevinshumaker3753 Жыл бұрын
Thank you Chris. I am always looking for inspiration for displaying Ham Radio data, Grid Square, Lat/Lon, Time, etc. I had a couple of other LCDs but they dies, and 3.5" screens are such a pain. I also appreciate the Waveshare products, as they have proven easy to use/support, cost effective, and very available. The PicoW and Pico W-BT are beginning to draw my attention for inexpensive, dedicated micro-controllers with no bloat, and easy programmability for Ham Radio. I'd like to see something tying an SDR to a Pico for a self-contained package. I was using PiZeros, but we all know about them...
@spillanemike
@spillanemike Жыл бұрын
Great video Chris, thanks!
@technoWZ5598
@technoWZ5598 Жыл бұрын
Wow, I did not think a Raspberry Pi would be handy to make something with a basic LCD screen! This is really cool, you could make a little clock or something out of it. Nice to see some retro tech on modern day tech! Would it be possible to make a radio or something else out of this?
@paterpracticus
@paterpracticus Жыл бұрын
Incredibly helpful. Thank you.
@plutarcocriterion754
@plutarcocriterion754 Жыл бұрын
Gracias muchas gracias gran clase
@mangethegamer
@mangethegamer Жыл бұрын
Raspberry Pi Pico is amazing. So much easier to work with than aurdino while being much more competent.
@drowhodis556
@drowhodis556 Жыл бұрын
Been waiting for this ❤️❤️❤️
@ronaldmarshall5845
@ronaldmarshall5845 Жыл бұрын
Great Video Chris! I think I will make one of those with my Grand Daugther! Would Love to see the screen used with a pi zero, pi 3, or pi 4!
@philsbbs
@philsbbs Жыл бұрын
great video just ordered a screen.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
You can say no more than that! :)
@rv6amark
@rv6amark Жыл бұрын
",,,give my anemometer another whirl." I love the humor! 😁
@Szwagier90
@Szwagier90 11 ай бұрын
7:36 - Shouldn't the GP0 be pulled down do the GND with pull-down resistor?
@Szwagier90
@Szwagier90 11 ай бұрын
It is pulled down internally in code :D Nevermind, hahah
@PatrickConstant
@PatrickConstant Жыл бұрын
One more time, I excellent video. For the "most exciting game probably in the whole world" I'm not sure but for crazy ideas I'm impatient. When I'll be back home, I will try to translate your project on Attiny 85. See you soon.
@boboften9952
@boboften9952 Жыл бұрын
Thank you Chris
@temyraverdana6421
@temyraverdana6421 Жыл бұрын
A wonderful video. Thanks a lot
@MrJHDK
@MrJHDK Жыл бұрын
Snake? Snake! Snaaaaaaake!!!! Oh well, a timing game works just as well. 😊
@johnsonlam
@johnsonlam Жыл бұрын
Thanks for the code and how to connect.
@DFX2KX
@DFX2KX Жыл бұрын
considering how little power the Pico uses, you could make a self-contained Weather Station. Temperature, wind speed and direction (few ways to do this, via microturbine or anamometer and weathervane combo), sunlight, and rain guage would all fit pretty easily and I think you could get all of those parts on a single I2C bus with some work as well. Or if you know how button matricies work, you'd be able to make an old school calculator.....
@alexmcd378
@alexmcd378 3 ай бұрын
Have you seen The 8-Bit Guy's video on LCDs? He covers the older standard instead of I2C, builds a box of switches for hand encoding the text, and also drives one using a Commodore 64 user port as gpio. Great stuff
@brucehanson4147
@brucehanson4147 Жыл бұрын
Thank you Chris, been looking for a simple, economical way to display measured parameters or what step of a program was in on a PICO. Just an update on the display you used, the current version from them uses a RGB LED back light so you can make it any color you wish...but you do have to add code for that too.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks for this. The version of the display I used is still sold -- as well as the RGB version. :)
@wayland7150
@wayland7150 Жыл бұрын
Those little electricity meters the energy companies supply work by sending a radio pulse for every 1wh used. The battery on those lasts for months. The same principle could work with an anemometer. Each time the mill turns it would send a radio pulse instead over wires.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
I like this thinking! :)
@sudedemmanuel2975
@sudedemmanuel2975 Жыл бұрын
You can control the back light with pwm from pico
@tubeDude48
@tubeDude48 Жыл бұрын
Thanks, Chris 👍 How about more projects, (besides the ones you've done so far) for the Pico!
@ExplainingComputers
@ExplainingComputers Жыл бұрын
I've at least one more Pico project planned. :)
@youdolantube
@youdolantube Жыл бұрын
A very enjoyable project.
@saintuk70
@saintuk70 Жыл бұрын
love the "iot" content
@montecorbit8280
@montecorbit8280 Жыл бұрын
At 2:55 "I square C" I kept on trying to figure out what you meant by "I square C", then you mentioned "I2C". I've heard of that before, could it be that it's called different things in the UK and the US?? "Queuing up" and "lining up" are examples of that....only place I hear a queuing is in programming when I was in college.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
I thought I said "I squared C". But also called "I two C". Not a UK /US thing as far as I am aware.
@montecorbit8280
@montecorbit8280 Жыл бұрын
@@ExplainingComputers You did say "I squared C", my apologies for clipping that.... I still wasn't making the mental gymnastics necessary to figure out you were talking about "I 2 C". Hope your day is excellent!!
@ExplainingComputers
@ExplainingComputers Жыл бұрын
:)
@MicrobyteAlan
@MicrobyteAlan Жыл бұрын
Thank you, that was fun.
@RixtronixLAB
@RixtronixLAB Жыл бұрын
Nice video, well done, thanks for sharing it with us :)
@tonywalker2372
@tonywalker2372 Жыл бұрын
Brilliant! Thankyou.
@ExplainingComputers
@ExplainingComputers Жыл бұрын
:)
@GroovingPict
@GroovingPict Жыл бұрын
dont you measure wind speed in meters per second in the UK?
@ExplainingComputers
@ExplainingComputers Жыл бұрын
The weather reports here give wind speed in MPH. We have a strange mix of measurement systems -- mostly metric, but all road signs in miles, and of course screen sizes in inches. :)
@suki4410
@suki4410 3 ай бұрын
@@ExplainingComputers Imperial system is obsolete. Please, use only the metric system!
@Colin_Ames
@Colin_Ames Жыл бұрын
Great video, as always. I need to check and see if the display I bought but never used is in fact I2C. EDIT: I checked, and it has a daughter board to handle I2C. I will buy a Pico and have some fun.
@f1remandg
@f1remandg Жыл бұрын
Excellent and as usual, clear, concise and a great way of getting into a hobby, I would like to know what are the best components for different projects, are there better components and how do you choose?
@ExplainingComputers
@ExplainingComputers Жыл бұрын
Thanks for this. it is hard to answer your question -- it all depend on the project. :) A Pico is good when you want to run a simple task, and have low power drain.
@dnoodspodu1159
@dnoodspodu1159 Жыл бұрын
How about showcasing of displaying on some small screen of some meta data from a file being played in Media Player Classic or Winamp? Or datastamps or path of selected file?
@WalterMan
@WalterMan Жыл бұрын
I use a pi pico with an oled screen connected to my pc with a custom app I coded to display temperature and cpu usage.
@tpobrienjr
@tpobrienjr Жыл бұрын
Thank you, from Victor the multitool.
Raspberry Pi Pico Rain Gauge
17:11
ExplainingComputers
Рет қаралды 42 М.
Orange Pi Zero 2W
16:11
ExplainingComputers
Рет қаралды 133 М.
Counter-Strike 2 - Новый кс. Cтарый я
13:10
Marmok
Рет қаралды 2,8 МЛН
e Paper with Arduino and Raspberry Pi
38:20
DroneBot Workshop
Рет қаралды 103 М.
Raspberry Pi Pico W: Wireless Weather Station
17:13
ExplainingComputers
Рет қаралды 302 М.
This is how you destroy Raspberry Pi
9:10
Jeff Geerling
Рет қаралды 536 М.
I tried finding Hidden Gems on AliExpress AGAIN! (Part 9)
15:00
GreatScott!
Рет қаралды 1,2 МЛН
Arduino vs Pico - Which is the Best Microcontroller For You?
20:38
Gary Explains
Рет қаралды 307 М.
Turning a Raspberry Pi Pico into a GPU!
16:42
element14 presents
Рет қаралды 130 М.
Why You Need To Put A Raspberry Pi Pico Inside Your XBOX Right Now!
17:37
Macho Nacho Productions
Рет қаралды 307 М.
GPIO for any PC or Laptop: Adafruit FT232H
19:18
ExplainingComputers
Рет қаралды 209 М.
LCD Basics for the Pi Pico
7:31
Tinkernut
Рет қаралды 120 М.
11 NEW Raspberry PI Pico and Pico W projects!!!
7:32
ToP Projects Compilation
Рет қаралды 51 М.