Raspberry Pi Pico LCD Projects

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 321

  • @mikebarrett2621
    @mikebarrett2621 ปีที่แล้ว +38

    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 ปีที่แล้ว +37

    Your enthusiasm when doing these projects is infectious... you can tell you love every minute :-)
    Thank you Chris, another great video!

    • @ExplainingComputers
      @ExplainingComputers  ปีที่แล้ว +5

      Thanks for your support. I did indeed enjoy making this video. :)

  • @d.barnette2687
    @d.barnette2687 ปีที่แล้ว +7

    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  ปีที่แล้ว +1

      Thanks for your support, much appreciated. I like your project ideas. :)

  • @garyplewa9277
    @garyplewa9277 29 วันที่ผ่านมา +1

    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.

  • @robertofortuni6886
    @robertofortuni6886 ปีที่แล้ว +12

    Great to see you've taken into account the debouncing issue when dealing with button inputs!

    • @YateyTileEditor
      @YateyTileEditor ปีที่แล้ว +2

      I get that reference! **cough** Mr Eater **cough**

    • @fjl05
      @fjl05 ปีที่แล้ว

      How is the debouncing issue fixed?

    • @julianopificius6910
      @julianopificius6910 2 หลายเดือนก่อน

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

  • @travnewmatic
    @travnewmatic ปีที่แล้ว +29

    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  ปีที่แล้ว +4

      Thanks for your support. Sounds like you have some happy Pico times ahead. Enjoy! :)

  • @jaffarbh
    @jaffarbh ปีที่แล้ว +8

    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.

  • @ZenithMusicNet
    @ZenithMusicNet ปีที่แล้ว +4

    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!

  • @josmoify
    @josmoify ปีที่แล้ว +2

    Using one on my early rp vintage internet radio build for some years now,it never skipped a beat .

  • @wayland7150
    @wayland7150 ปีที่แล้ว +64

    Nice to see a 35 year old display being used on a modern build.

    • @bereck7735
      @bereck7735 ปีที่แล้ว +3

      ​@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 ปีที่แล้ว +3

      @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 ปีที่แล้ว +1

      @@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 ปีที่แล้ว +2

      @@wayland7150 Aww, here's me thinking the other 3 were backups for the rage-induced destruction of the first 3

  • @qzorn4440
    @qzorn4440 ปีที่แล้ว +3

    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.

  • @ahmad-murery
    @ahmad-murery ปีที่แล้ว +4

    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 ปีที่แล้ว +1

      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 ปีที่แล้ว +1

      ​@@DFX2KX Since I like simplicity I think the weight with a microswitch is my way to go.
      Thanks!

  • @Rushil69420
    @Rushil69420 7 หลายเดือนก่อน +1

    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!

  • @fram1111
    @fram1111 ปีที่แล้ว +1

    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.

  • @canonwright8397
    @canonwright8397 ปีที่แล้ว +1

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

  • @rdhunkins
    @rdhunkins ปีที่แล้ว +3

    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.

  • @bobrowles43
    @bobrowles43 ปีที่แล้ว +4

    Thank you for the content. There seem to me endless number of channels covering Ardunio on TH-cam 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....

  • @maxpolaris99
    @maxpolaris99 ปีที่แล้ว +1

    The brass screw and putty esthetic on the anemometer just blew my socks off.👍

  • @grandrapids57
    @grandrapids57 ปีที่แล้ว +1

    The clean presentation and methods of production on this channel are paradigms

  • @iandron7119
    @iandron7119 ปีที่แล้ว +1

    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.

  • @Kw1161
    @Kw1161 ปีที่แล้ว +2

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

  • @PeterJasper
    @PeterJasper ปีที่แล้ว +5

    Thanks for another great video and project. It is great to revisit and expand on old projects as well.

  • @rickster2317
    @rickster2317 ปีที่แล้ว +1

    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.

  • @anon_y_mousse
    @anon_y_mousse ปีที่แล้ว +3

    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.

  • @jordantheman25
    @jordantheman25 ปีที่แล้ว +2

    There are so many little LED, OLED, Etc displays for cheap these days, such a blessing.

  • @deepstateagent5150
    @deepstateagent5150 ปีที่แล้ว +1

    I look forward to your videos every Sunday morning. Keep up the great work Chris

  • @perrymcclusky4695
    @perrymcclusky4695 ปีที่แล้ว +3

    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 ปีที่แล้ว +1

      8 bit or 4 pit interface. on the standard ones. They've been around for decades. there are better displays available today.

    • @ExplainingComputers
      @ExplainingComputers  ปีที่แล้ว +1

      Thanks Perry. :)

    • @volvo09
      @volvo09 ปีที่แล้ว +2

      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 ปีที่แล้ว +1

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

  • @montecorbit8280
    @montecorbit8280 ปีที่แล้ว +3

    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*

  • @johandeklein5253
    @johandeklein5253 ปีที่แล้ว +1

    love to see little project using these little computers. Thanks for sharing, greetings from Missouri/USA.

  • @pavan13
    @pavan13 ปีที่แล้ว +1

    That measuring the wind was awesome

  • @edwardallenthree
    @edwardallenthree ปีที่แล้ว +2

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

  • @zaksept
    @zaksept ปีที่แล้ว +2

    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 .

  • @championslayers
    @championslayers ปีที่แล้ว +1

    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 ปีที่แล้ว +8

    I wish Amazon would sell their large, inexpensive Kindle E Ink displays for makers.

  • @ambigousBarrel
    @ambigousBarrel ปีที่แล้ว +3

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

  • @AMDRADEONRUBY
    @AMDRADEONRUBY ปีที่แล้ว +1

    Crazy how rasp pie have many options making them versatile have a Nice week Christopher.

  • @mikefinn2101
    @mikefinn2101 ปีที่แล้ว +1

    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

  • @stephenlewis9159
    @stephenlewis9159 ปีที่แล้ว +1

    I agree, this was most exciting. Thrilling, even. Enthused to try one out in my bionic arm.

  • @chriholt
    @chriholt ปีที่แล้ว +1

    What fun adding that little LCD! Can't wait to see what else you come up with :)

  • @nutsnproud6932
    @nutsnproud6932 ปีที่แล้ว +2

    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!

  • @dossaer
    @dossaer ปีที่แล้ว +2

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

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

  • @jerril42
    @jerril42 ปีที่แล้ว

    Thanks Chris. I like the single upside-down 2.2K resistor (@ 2:37). Just to drive some folks nuts. Take care.

  • @ObsidianMercian
    @ObsidianMercian ปีที่แล้ว +1

    Fantastic video Chris! You have given me some inspiration for projects to do with my children during the upcoming summer holidays.

  • @mangethegamer
    @mangethegamer ปีที่แล้ว +1

    Raspberry Pi Pico is amazing. So much easier to work with than aurdino while being much more competent.

  • @patrpatl
    @patrpatl ปีที่แล้ว +1

    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.

  • @DRussell8473
    @DRussell8473 ปีที่แล้ว +1

    I love these project videos. Thanks for making tinkering fun!

  • @danielpicassomunoz2752
    @danielpicassomunoz2752 ปีที่แล้ว +1

    This brought me back to my highschool electonics workshops, thanks! Great content, as always!

  • @DFX2KX
    @DFX2KX ปีที่แล้ว +4

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

  • @joeg3950
    @joeg3950 ปีที่แล้ว +1

    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!

  • @marklucas8110
    @marklucas8110 ปีที่แล้ว +1

    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!

  • @TerraMagnus
    @TerraMagnus ปีที่แล้ว +1

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

  • @kevinshumaker3753
    @kevinshumaker3753 ปีที่แล้ว +2

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

  • @bcollinsks1
    @bcollinsks1 ปีที่แล้ว +1

    Great Content! I enjoyed this segment and look forward to playing with a few projects. Thanks for doing what you do, it is appreciated.

  • @liontuga155
    @liontuga155 ปีที่แล้ว +1

    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!

  • @technoWZ5598
    @technoWZ5598 ปีที่แล้ว +3

    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?

  • @wayland7150
    @wayland7150 ปีที่แล้ว +2

    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.

  • @gloiloidn5752
    @gloiloidn5752 ปีที่แล้ว +1

    The world's best game made me smile a lot! 😂 Fantastic video!

  • @Oharafolk
    @Oharafolk ปีที่แล้ว +1

    Thank so much Chris, this video was very exciting!

  • @alanthornton3530
    @alanthornton3530 ปีที่แล้ว +2

    Thanks Chris for an interesting Sunday video. I thought of a perfect project for this on a model railway shunting layout :)

    • @ExplainingComputers
      @ExplainingComputers  ปีที่แล้ว +1

      Hi Alan. Always good when there are model railway possibilities. :)

  • @patrickthegoat
    @patrickthegoat ปีที่แล้ว +1

    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 ปีที่แล้ว +1

    Your clock script gave away how long you've been working on this video :)

    • @ExplainingComputers
      @ExplainingComputers  ปีที่แล้ว

      :)

    • @johnjohnson2540
      @johnjohnson2540 ปีที่แล้ว +1

      @@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". :)

  • @alexmcd378
    @alexmcd378 2 หลายเดือนก่อน

    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

  • @leetucker9938
    @leetucker9938 ปีที่แล้ว +1

    I love this channel nearly as much as I love Linux Mate 🙂

  • @rv6amark
    @rv6amark ปีที่แล้ว +1

    ",,,give my anemometer another whirl." I love the humor! 😁

  • @CASIOTRON
    @CASIOTRON ปีที่แล้ว +2

    Greetings from Bucharest Romania !
    Soon on your way to 1,000,000 subscribers !

  • @brucehanson4147
    @brucehanson4147 ปีที่แล้ว +1

    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  ปีที่แล้ว +1

      Thanks for this. The version of the display I used is still sold -- as well as the RGB version. :)

  • @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 TH-cam hero

  • @anonylesss
    @anonylesss ปีที่แล้ว +1

    i think it would game better under coffee:) great video as usual

  • @richards7909
    @richards7909 ปีที่แล้ว +1

    I was hoping for a game of rock, paper, Mr Scissors!
    Excellent video, enjoyed it :)

  • @srtcsb
    @srtcsb ปีที่แล้ว +1

    Very cool. Always enjoy your presentation. Thanks for another great video Chris. 😎👍

  • @johnsonlam
    @johnsonlam ปีที่แล้ว +1

    Thanks for the code and how to connect.

  • @MrJHDK
    @MrJHDK ปีที่แล้ว +2

    Snake? Snake! Snaaaaaaake!!!!
    Oh well, a timing game works just as well. 😊

  • @ronaldmarshall5845
    @ronaldmarshall5845 ปีที่แล้ว +1

    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!

  • @PatrickConstant
    @PatrickConstant ปีที่แล้ว +1

    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.

  • @paterpracticus
    @paterpracticus ปีที่แล้ว

    Incredibly helpful. Thank you.

  • @koduflower2000
    @koduflower2000 ปีที่แล้ว +1

    Great video Chris! I really wanna buy this right now.

  • @sudedemmanuel2975
    @sudedemmanuel2975 ปีที่แล้ว +1

    You can control the back light with pwm from pico

  • @Remigrator
    @Remigrator ปีที่แล้ว +3

    You are my favorite SBC 🤗

  • @25hztolife14
    @25hztolife14 ปีที่แล้ว +2

    Hi there EC. Just wanted to check in. I don't really comment much. We do need to see much more of Mr. scissors and Mr. Hamster though.

    • @ExplainingComputers
      @ExplainingComputers  ปีที่แล้ว +2

      Thanks for checking in! :) I'm currently shooting a PC build -- which involves lots of opening for Mr Scissors and Stanley. So I now have to plan for Mr Hamster's return . . .

  • @HKey_Root
    @HKey_Root ปีที่แล้ว +1

    Love these projects. Thanks.

  • @tubeDude48
    @tubeDude48 ปีที่แล้ว +1

    Thanks, Chris 👍 How about more projects, (besides the ones you've done so far) for the Pico!

  • @spillanemike
    @spillanemike ปีที่แล้ว +1

    Great video Chris, thanks!

  • @WalterMan
    @WalterMan ปีที่แล้ว +1

    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.

  • @therealdebater
    @therealdebater ปีที่แล้ว +1

    My friend, who's able to tell me about events in the future, told me that in three months' time from now there's this guy called Christopher Barnatt who becomes a multi-billionaire from marketing a game called 'Angry Buttons'. Apparently, the appeal was in the simplicity.
    :-)

  • @saintuk70
    @saintuk70 ปีที่แล้ว +1

    love the "iot" content

  • @papaalphaoscar5537
    @papaalphaoscar5537 ปีที่แล้ว +1

    Any one else remember Gary Gnu when Christopher does the outro? 🙂

  • @tupuzzzi
    @tupuzzzi ปีที่แล้ว +1

    Impeccable timing sir! Was wondering what to do with my Pi. My Raspberry Pi Zero W just arrived after I have burned my old 3b+ somehow. Got a cheaper Pi this time in case I blow this one up too :P.

  • @philsbbs
    @philsbbs ปีที่แล้ว +1

    great video just ordered a screen.

  • @jackburton8352
    @jackburton8352 ปีที่แล้ว +1

    Niche content is why i love this channel.
    Have a great day Chris.

  • @CCoburn3
    @CCoburn3 ปีที่แล้ว +1

    Hello Stanley & Mr. Scissors. Chris, I don't know how you managed to publish this video. I'm surprised you aren't so addicted to the game that you can get anything done. You need to watch out -- some people get so addicted to computer games that they even forget to eat.

  • @temyraverdana6421
    @temyraverdana6421 ปีที่แล้ว +1

    A wonderful video. Thanks a lot

  • @RixtronixLAB
    @RixtronixLAB ปีที่แล้ว +1

    Nice video, well done, thanks for sharing it with us :)

  • @epockismet76
    @epockismet76 ปีที่แล้ว +1

    Once I learned how to use the lcd screen I got from a starter electronics kit, it became a required component for all of my self teaching projects. And I would say you should get at least one RGB backlight one, they are even more fun to play with 😄
    Working in the LCD screen with other projects was fun, especially when learning multithreading 🤪 I miss learning it all for the first time 😄

  • @WHNorthcote
    @WHNorthcote ปีที่แล้ว +1

    I wonder if with a Pi Zero and the small form it has with this display making it into a GPS clock with Lat/Lon for all the nerds who like that sort of thing (me included). A VK-172 receiver and a display like that would be a fun project on the cheap.

  • @massimo79mmm
    @massimo79mmm ปีที่แล้ว +1

    very useful, i'm searching an idea for using an ESP32, this could be a good idea

  • @f1remandg
    @f1remandg ปีที่แล้ว +1

    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  ปีที่แล้ว +1

      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.

  • @Colin_Ames
    @Colin_Ames ปีที่แล้ว +1

    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.

  • @RetroSegaDev
    @RetroSegaDev ปีที่แล้ว +1

    That was a brilliant run down of what you can do with the LCD. I'm just wondering if you could write Pong for it if you had 2 switches...Although the refresh might be a bit slow but it should in theory work ha

  • @mohamedmostafamohamedmahbo5706
    @mohamedmostafamohamedmahbo5706 ปีที่แล้ว +1

    I would make a fancy alarm clock out of it