Raspberry Pi LESSON 4 : Understanding and Using GPIO Pins

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

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

  • @wwcr893
    @wwcr893 2 года назад +16

    Question: Shouldn't board pin 6 be shown as ground, tx on board pin 8 (GPIO-14) and rx as board pin 9 (GPIO-15)? Am I missing something?

    • @paulmcwhorter
      @paulmcwhorter  2 года назад +5

      Good catch. I will add a note to the video. You can down load corrected pinout here:
      toptechboy.com/understanding-raspberry-pi-4-gpio-pinouts/pinout-corrected/
      Next couple lessons unfortunately also have this error, but I will correct it in future videos. Thanks for your help!

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

      @@paulmcwhorter On the same issue, Board pin 24 should be marked as (GPIO-8), right?

    • @paulmcwhorter
      @paulmcwhorter  2 года назад +2

      @@SPADMI Thanks, that correction has been made in the downloadable one on my web site now. Thanks

    • @aman-sood
      @aman-sood 2 года назад

      I was wondering that exact thing!!

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

      unfortunately that url doesn't work anymore :(@@paulmcwhorter

  • @brandonzawaski
    @brandonzawaski 11 месяцев назад +4

    Paul, I've rewatched the beginning lessons and up to this point just so I am not missing anything. You are a great explainer.

  • @opalprestonshirley1700
    @opalprestonshirley1700 2 года назад +25

    I've been doing this since 1979 and I always get a sense of satisfaction seeing the LED come on and go off.

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

    Unfortunately, the old GPIO library has been discontinued due to hardware changes in Raspberry Pi. The new method for controlling GPIO is by using libgpiod. Here's an example to turn an LED on and off:
    Note: You must use BCM pin numbering, not BOARD, which is why GPIO 17 is used in the example. Cleanup is no longer necessary.
    import gpiod
    import time
    chip = gpiod.Chip('gpiochip0')
    line = chip.get_line(17)
    line.request(consumer='LED', type=gpiod.LINE_REQ_DIR_OUT)
    line.set_value(1)
    time.sleep(5)
    line.set_value(0)

  • @mmulisha1022
    @mmulisha1022 2 года назад +2

    Just Received my kit and started following this series. No programming background at all. (outside CNC and robotic programming). I am loving this series, and looking forward to getting all the way through it.... long way to go. I never thought i would be this happy about a blinking light lol!! Awesome! Homework is done, may jump to lesson 5 tomorrow!!

  • @callumm.15
    @callumm.15 Год назад +6

    Following along with the Pi 5 has been smooth sailing up until this video, where RPi.GPIO can no longer be used unfortunately. I will try to follow using gpiod, but it seems more complicated. With that aside, tutorials have been really great so far!
    EDIT: I noticed the Raspberry Pi documentation recommends using "gpiozero", though it works much differently than "RPi.GPIO" using device objects rather than controlling the pins directly which I'm not a fan of. On the other hand, "gpiod" seems more complicated and above all, has very little documentation (atleast of what I could find). For anyone looking for a library like RPi.GPIO, I definitely recommend "lgpio" which behaves very similarly. The biggest difference it seems is the chip select, but this is because of Pi 5's new structure. This is very easy to use, just by selecting chip "4" (use "chip = lgpio.gpiochip_open(4)" ). Then, follow the "lgpio python" documentation to use the gpio pins by using the "chip" object as a handle. Hope this helps someone!

    • @SuleimanAL-Far
      @SuleimanAL-Far 5 месяцев назад

      Thank you

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

      This is the life of an Engineer, old technologies get depreciated and need to figure out how to port the software to the latest tools :(

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

    This is so exciting! I'm thankful you started out very simple because I know the homework is pretty basic but it still took a while for me to figure it out. I'm really excited for the rest of this series! Just turning on and off an LED with code is blowing my mind as someone who has only done basic computer coding. Somehow it feels more magical when you're actually affecting things in the real world!

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

    Hello from South Texas! Thanks for the great lesson and video playlist! I recently got a job building weather instrumentation for a university. Most of the instrumentation is done using a Raspberry Pi, and I am just starting out. Just wanted to share my thanks and appreciation for your videos!

  • @MattFacer
    @MattFacer 2 года назад +2

    I’ve learnt more in this one lesson than I have over hours of googling!! Thanks. Great video and delivery

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

    Here from the Arduino course's, This was needed and as good as them. Thank you so much!

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

    Best coffee tutorial ever! :)

  • @annastrong1146
    @annastrong1146 11 месяцев назад +4

    Thanks for the shoutout to the ladies. Love your videos. Super helpful. Thank you for making them!

    • @GYM_LOVER-q5r
      @GYM_LOVER-q5r 2 месяца назад

      all ladies deserves this shout out

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

    Hloo Paul this is chandana , i am following all your lessons from starting , i love the way you teach us ......Thank you

  • @tarekazakir9919
    @tarekazakir9919 2 года назад +2

    You are the best
    I am a a stem teenager and I really wanted to learn alot of things about robotics and I found all my answers in your videos.
    Thank you very much

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

      Great to hear! You are going to go far in life. Maybe even make the world a better place!

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

    Thank you so much for this.
    I do have some programming background but never any hardware.
    Seeing the LED turn on brought almost a tear to my eye as it reminded of my initial journey in programming.
    Thank you!!.
    FYI. folks with a Raspberry pi 5.
    this instructions wont work.
    RPi 5 changed some things and code written for previous pis wont work.

  • @CKGamingChannel-w2o
    @CKGamingChannel-w2o Месяц назад

    Something strange is occuring on my 16 channel relay board, connected to a t-cobbler. The GPIO.output, LOW and HIGH commands are inverted in polarity. I really don't understand it. But in the code I have to invert the commands to send signals.
    Any ideas?

  • @Event.Horizon.
    @Event.Horizon. Год назад

    You got another woman watching your vids over here, thanks for all the help!

  • @UllulAmar
    @UllulAmar 19 дней назад

    I have raspberri pi 5 running Python 3.11.2 (main, Sep 14 2024, 03:00:30) [GCC 12.2.0] on linux
    I copied your code to blink the LED but following line gives the error,
    >>> GPIO.setup(11,GPIO.OUT)
    Traceback (most recent call last) :
    File "", line 1, in
    RuntimeError : Cannot determine SOC peripheral base address
    .
    Please help with this error

    • @paulmcwhorter
      @paulmcwhorter  18 дней назад

      These lessons are for the Pi 4. I have not made a series on the Pi 5, and much changed on the Pi 5

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

    Sir in the GPIO pin out you've shown in the beginning (10:40), you've shown pin 6 as TX. However Google images shows it as Ground for Raspberry Pi 4, Model B. Is this for a different model? Thank you in advance for clarifying. 😊🙏

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

    Thanks for taking the time to explain the basics for the new guys such as myself😁

  • @tarekhk
    @tarekhk 11 месяцев назад +1

    Hey Paul, I got the RPi 5 and a SunFounder kit but when I try to setup GPIO.OUT I get : "RuntimeError: Cannot determine SOC peripheral base address". My understanding is that the new RPi 5 has a new chip and I cannot use the GPIO library so can't follow your lessons. I have been able to interact with the LED through GPIOD however I don't believe I can follow your lessons as it's very different code lines. What is the best way to follow the lessons? would a cheap Pico be able to use the GPIO library? I can't justify buying an older RPi 4 now as gpio library has been deprecated.

    • @paulmcwhorter
      @paulmcwhorter  11 месяцев назад +1

      This class is probably better suited for an earlier version of the pi.

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

      @@paulmcwhorter Dear Paul, I really enjoyed your lesson so far, sadly I have the kit and pi as well and get the same error messages… it’s quite annoying tbh. As someone without experience it is difficult or impossible to follow your course. Maybe you can talk to sunfounder that they not advertise the set for raspberry pie 5 or ask them if they can pay you to run an updated version. I know this is not your fault but for me on the consumer end it is more than annoying, what I do now with this 60$ half-used set

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

    You the best, I am sharing this key content to my friends. Greetings from Bolivia.

  • @isimsiz-ok1jg
    @isimsiz-ok1jg 11 месяцев назад

    I'm surprised there are still good men like you in this world, thank you. :)

  • @sachinkumar-eb9mt
    @sachinkumar-eb9mt 11 месяцев назад

    Hi Sir, I am very thankful that you are doing this series. I am using Pi5 and at 35:00 i am getting the error as
    Traceback (most recent call last):
    File "", line 1, in
    RuntimeError: Cannot determine SOC peripheral base address
    please help me!
    Thanks in Advanced

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

    I have an obsolete kit from NRI made by fishertechnic. I haven't been able to use since I can no longer run the software
    A fortran based language geared to the proprietary interface in the kit. Distributed on(5.25" floppies, IBM xt)
    I would like to use the raspberry pi instead. However this will require running some small 5v motors. I don't want to power the motors from the pi. I need a driver circuit to switch a separate supply to the motors

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

    Thank you for all these lessons.

  • @SahithaKARAPITIYA-yx3dh
    @SahithaKARAPITIYA-yx3dh 6 месяцев назад

    Thank you Mr. Paul.
    RuntimeError: Cannot determine SOC peripeheral base address. Could you please tell me why this error appears though I followed the steps in the video? (this occured after the GPIO.setup(11,GPIO.OUT). I am using Rasppi5. Thank you

    • @paulmcwhorter
      @paulmcwhorter  6 месяцев назад +1

      These lessons are not compatible with Pi 5 as Pi 5 changed how to interact with GPIO pins.

    • @SahithaKARAPITIYA-yx3dh
      @SahithaKARAPITIYA-yx3dh 6 месяцев назад +1

      @@paulmcwhorter so is do you have another seres for pi 5. Or would you recommend any other source?

    • @SahithaKARAPITIYA-yx3dh
      @SahithaKARAPITIYA-yx3dh 6 месяцев назад +1

      @@paulmcwhorter Mr. Paul my goal is to send data from several STM 32 nucleo boards to a raspberry pi 5 and then send it to a cloud server.

  • @daveflatters4981
    @daveflatters4981 2 года назад +3

    If you type ‘pinout’ without the quotes, on the terminal you get a basic diagram of the actual model of Pi you are using, some basic information about it and a GPIO diagram. The GPIO diagram shows the board PIN numbers power and ground pins and the GPIO numbers but there is no extra information about the use of the GPIO pins i.e. UART, I2C etc

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

      Dave, I just learned something new, cool and important. Thanks!

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

      Oh cool! Thank you so much!

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

    This video is incredible. Thank you so much for all your hard work teaching.

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

    Thank you. You're an inspired person on a mission. Enjoy your work!

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

    Question: how does the raspberry pi know to output 5 volts?

  • @floridian080
    @floridian080 2 года назад +2

    After watching this video twice, I see the advantages of library you used over the GPIO Zero library used in Official Raspberry Pi Beginner's Guide. Also, I've been using VSCode on my Pi400 without difficulty. The breadboard adapter makes for a more Arduino-like experience than attaching wires directly to the Pi.

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

      I also wondered why Paul chose this library. After some reading I see that GPIOzero is a wrapper for RPi.GPIO and handles some of the setup code for you. Most of us are coming from Arduino and understand setup and pullup / pulldown so I think RPi.GPIO was the right choice. It is good to know about GPIOzero as you will see it in example code online.

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

    Thank you for the free course I really appreciate your work

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

    The circuit diagram shows a 5v battery. Does the command 'GPIO.output(11,True)' set pin 11 at 5V by default? Can we set the voltage at any desired level using the output function?

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

    Hi Paul, I'm running into an issue when I run the line "GPIO.setup(11,GPIO.OUT)" It is giving me an error saying, "RuntimeError: Cannot determine SOC peripheral base address." Do you have any ideas why? Thanks for everything so far, really enjoying your course!

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

      It's cuz the raspberry pi 5 changed.
      use the gpiozero library instead

  • @carol-lo
    @carol-lo Год назад

    You are superstar! I feel more confident on using the GPIO now. Thanks.

  • @russellfaronijr.6826
    @russellfaronijr.6826 7 месяцев назад

    I have a problem with the code for the first program in this lesson. I get this error after the 3rd line of code is entered and it's not a typo I checked several times...
    Traceback (most recent call last): File "", line 1, in untimeError: Cannot determine sOC peripheral base address >> GPIO.setup(11,GPIO.OUT)
    Traceback (most recent call last): File "", line 1, in
    RuntimeError: Cannot determine SOC peripheral base address
    Any suggestions?

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

      If you're using a Raspberry Pi 5, you can't use RPi GPIO. You need to use GPIOZERO.

  • @steffig7282
    @steffig7282 2 года назад +2

    You are brilliant Sir.
    I ♡ that your shirt always according to the tutorial.
    Greetings from Belgium

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

    I actually did the sum. I did not fold like a cheap lawn chair. I also have my Ice Coffee for this next video. I appreciate you Paul! I defiantly look up to you.

  • @JonahWind-k8x
    @JonahWind-k8x 5 месяцев назад

    Hello!
    Nice lesson Paul, I understood everything. 🎉But as I wrote in the command: GPIO.setup(11,GPIO.OUT) I got this: RuntimeError: No access to /dev/mem. Try running as root!
    I tried running the program with sudo python3 and then it worked. Is there another way to solve this problem, because I'm affraid, that if I write a wrong command I could remove the hard/software or something like that.😅

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

    Is it possible to write in others instead of Phython?

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

    Love your content as always. Thank you!

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

    I'm a woman, I love your programs !!

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

    Hi paul, I just wanted to ask before i buy the kit. Is the raspberry pi included in the kit itself? Or the kit only has components without the raspberry pi.
    Is the raspberry pi included in the Sunfounder kit? The one you have in the video

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

      No you need to have the pi, it is not included

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

      @@paulmcwhorter Ow ok thanks you, Any suggestions on where i can get a complete Kit and not seperate?

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

    Does it matter if I put the resistor on the short leg (cathode) instead of connecting it to the long leg (anode) of the LED?

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

      Can go on either side of the LED. Just needs to be in series with it.

  • @Dinesh-nb6td
    @Dinesh-nb6td 11 месяцев назад

    in which simulation we can make above simulation?

  • @charlotteswift
    @charlotteswift 2 года назад +2

    Hi Paul
    In the first video for this series, someone corrected you for pronouncing the 'G' in GNOME. I wasn't sure but I was biased towards pronouncing it.
    Well it turns out that you were right👍(as usual).
    GNOME is an acronym for “GNU Network Object Model Environment,” and since the 'G' in GNU is pronounced and GNU is the first word in the GNOME acronym, the 'G' in GNOME is also pronounced.

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

    The drawing said 5V but didn't you put it to the 3V?

  • @tahababazadeh8444
    @tahababazadeh8444 2 года назад +2

    Hi Mr.McWorter as always thanks for your great videos . unfortunately in my country with my income I cant afford to buy a raspberry pi although I am really interested and full of ideas and so passionate about it. is there any simulator or anything that I can rely on for learning raspberry pi thank you
    sincerly,

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

      I don't know is this the better answer for you. Your alternative choice is to buy a Raspberry Pi Zero 2W at US$15. Not that expensive, hoping that it is more affordable.

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

    I've ordered the sun founder package and it's supposed to be delivered.

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

    Homework solved!!😁
    I even added another user-input about the time delay between 2 blinks. So the blinking is sometimes too slow or too fast, depending upon the user-input. 😀
    This is really exciting!!😃
    And thank you for mentioning the amazing "time" library of Python.❤

  • @Compuscience-Python-Prog-Exps
    @Compuscience-Python-Prog-Exps Год назад

    I've learned how to do a Breadboard because of you Paul. Another RUclips
    teacher showed me tips to create a breadboard with cobbler. Excellent choice
    I even recommend it. Cobblers avoid actual Rasp Pi pinouts from getting
    damaged. I'm just over a year and a half from having this amazing machine
    It taught me much in such a very short time. Please check out my work.
    when you have the time... Thanks Paul.......🙂👌👍

  • @paddler-sn7ub
    @paddler-sn7ub 9 месяцев назад

    Thank you for the website and tutorials

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

    Excited for the GPIO video !!!

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

    Really cool lesson. Many thanks!!

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

    I've been enjoying these videos, until now. I'm using a Raspberry Pi 5, which doesn't use RPi GPIO. The Pi 5 uses GPIOZero. I'm currently struggling with that! Hopefully I can jump back on these videos, once I figure out what the heck I'm doing with GPIOZERO.

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

      Same issue am glad you've raised it I found your comment scrolling for solutions. I'll try using GPIOzero en do more research on it.

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

    Is this ever going to be updated for the raspberry pi 5, or did I just waste $50 on this kit?

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

      Perhaps you should have bought the version of the Pi that the class is based around? That would have been another option.

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

      @@paulmcwhorter Your friends at sunfounder said that their kit is compatible with the pi 5.

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

      Don't be mean, you are such a buzz killer.

    • @CKGamingChannel-w2o
      @CKGamingChannel-w2o Месяц назад

      It sounds very stupid I know, but try inverting the low high commands in your code and see if it helps.

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

    Where are the answers to the homework? List of program so I can learn from it?

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

      Thanks! Really appreciate the support, it means a lot.

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

    I gotta laugh. It took me longer to figure out how to load this video to RUclips than writing the program (not quite). I did it mostly on my own except for the exception handling. Thank you ChatGPT. My program worked fine until I tried breaking out of the while loop with ctl-z. It never got to clean out the GPIO pins. With the exception and ctl-c it worked fine.

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

    This guy is amazing!!!

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

    Great videos. Some timestamps would help greatly. If you could also keep the picture of you small rather than large so we can see the content, that would be super.

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

    Hi Paul - thanks again for providing these materials, they are much more pleasant than reading dry tutorials!
    Would you be able to check my computations below? I'm trying to figure out how to select the correct resistor. According to my internet research (probably reliable but who knows):
    * 3.3 volts is the amounted provided by GPIO pins
    * 1.8 is the voltage drop for the red/green/yellow LEDs in our kit
    * 8 milliamps is the default max amperage on a GPIO pin
    * R = (VS - VD) / I, where R = Resistance, VS=voltage supplied, VD = Voltage Drop, I = current
    So by my calculation and research, the lowest resistor value meeting the 8 milliamp max should be:
    R = (3.3 - 1.8) / .008 = 187 ohm
    I.e., we should have at least a 187 ohm resistor to avoid sending too much current through the pin. Am I correct? Thanks in advance

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

      Voltage drop across a diode is 0.6v not 1.2v

  • @SuleimanAL-Far
    @SuleimanAL-Far 6 месяцев назад

    can you help me please , I can not understand this error and how Can I solve it ??
    pi@raspberrypi:~ $ python3
    Python 3.11.2 (main, May 2 2024, 11:59:08) [GCC 12.2.0] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import RPi.GPIO as GPIO
    >>> GPIO.setmode(GPIO.BOARD)
    >>> GPIO.setup(11,GPIO.OUT)
    Traceback (most recent call last):
    File "", line 1, in
    RuntimeError: Cannot determine SOC peripheral base address

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

    Thank you so much mister paul.

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

    Thank you Mr. Paul, This is really interesting.

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

    Nice video, thanks :)

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

    import time
    import RPi.GPIO as GPIO
    GPIO.setmode(GPIO.BOARD)
    red=11
    GPIO.setup(red,GPIO.OUT)
    while true:
    blink_num=int(input("How Many Blinks? "))
    for i in range (0,blink_num):
    GPIO.output(red,True)
    time.sleep(.25)
    GPIO.output(red,False)
    time.sleep(.25)
    GPIO.cleanup()
    Homework Lesson 4

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

    no one's been killed with an led YET

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

    It wasn't easy but I AM LEGEND!

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

    Cool stuff, indeed!

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

    Wonderful, thanks very much.
    Can't wait to learn more in the next videos. §8-)
    Have a happy day. 🌞

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

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

    Let us all sing: My LED is on! My LED is on! wow, LOVE to see that my LED turn on!

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

    Homework number 3 for this lesson ruclips.net/video/BD-iiyfyI1E/видео.html
    Paul suggested you could blink multiple LEDs independently without using threading. I took the challenge.

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

    thanks !!!

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

    Dear Sir please upload early..
    Please release today only, lec4 and lec5

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

    I wish you were my Physics Teacher

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

    How's your church plant going??

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

      Slow, but progressing. Purchasing property is a challenge right now.

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

      @@paulmcwhorter I see, do you need more donations?

    • @paulmcwhorter
      @paulmcwhorter  2 года назад +2

      Thank you for your kind thoughts. Actually I dont get donations or support for the work I do here. I support it from the work I do on this channel. So, supporting the channel supports the work I do here. The problem with property purchase is one of finding the right spot at the right price. Also, most property here does not have a title, and then issues of easements and other things make it a challenge. So, we continue to try and work through all those issues. Thanks for asking.

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

      @@paulmcwhorter Ok, makes sense. I will be praying!

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

    True turns mine off

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

    link: ruclips.net/video/hWWusFpUzzQ/видео.html for the homework. This was fun..had to keep playing with it.

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

    I am legend!

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

    Lesson 4 uploaded: ruclips.net/video/BsV-JZMP29k/видео.html

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

      Brian the link seems to go to Lesson 3 solution.

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

      @@paulmcwhorter Good catch, link is fixed.

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

    This is my Homework link: ruclips.net/video/-iwWWcsi28U/видео.html

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

    ok, my fist 10 minutes done. Will return later for the next 10 minutes..

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

    sorry, took too long to get into it....:) :)

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

    Hello Paul. thank you for another exciting and challenging lesson. Here is my homework assignment... please forgive the untidy desk...thankful to have found the SunFounder Kit and though the kit.. I found YOU. God bless you, Brother Paul. oh.. here is the link to my homework video ruclips.net/video/XXmANUzK6qg/видео.html

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

    Thank you for the lesson! Starting series on Raspberry Pi as well. So here is my homework solution for this one: ruclips.net/video/z5J7wOWYZHw/видео.html

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

    Thanks for the great lesson - I have been traveling in my RV lately so I am a bit behind in the lessons. Trying to catch up while I still have internet. Here is my homework video: ruclips.net/video/hboUN4e8At0/видео.html

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

    I'm a gal

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

    boom

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

    Thank you for this series, really enjoying it. My homework is here:
    ruclips.net/video/Da5LJAIvp58/видео.html

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

    Not working for GPIO.setup(11,GPIO.OUT)

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

    my homework submission:
    drive.google.com/file/d/157jwlQiHmHkj4bUsIvJZOopQ19Hsg-GT/view?usp=sharing

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

      Can you add to youtube . . . most people wont click on google drive links