raspberry Pi Pico digital input, how to use a Push Button with raspberry Pi Pico

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

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

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

    Raspberry Pi Pico Tutorials for Beginners:
    Arduino Vs Raspberry Pi Pico:
    ruclips.net/video/15S8HM1GMu0/видео.html
    Raspberry Pi Pico Pinout Explanation and Onboard components:
    ruclips.net/video/q6rbqR4X7hE/видео.html
    Setting up Raspberry pi Pico:
    ruclips.net/video/jJBwi5pEvN8/видео.html
    Raspberry Pi Pico Led Examples:
    ruclips.net/video/0NmRtVAHJ9A/видео.html
    Raspberry Pi Pico Digital Input:
    ruclips.net/video/MCeQsSQu_sE/видео.html
    Raspberry Pi Pico Oled display SSD1306:
    ruclips.net/video/fH23Kvl_o_o/видео.html
    Raspberry Pi Pico Analog Input:
    ruclips.net/video/_f_tpVNMXTk/видео.html
    Raspberry pi pico Ultrasonic Sensor:
    ruclips.net/video/7R_-deTXDLo/видео.html
    Raspberry Pi Pico Temperature Sensor:
    ruclips.net/video/__v2P_RmXSY/видео.html
    Raspberry Pi Pico and PIR Sensor based Security Project:
    ruclips.net/video/kQlp-xdyZ3Y/видео.html

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

    Bro I was getting into the intro music!! Great and simple video by the way exactly what I needed to get me going

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

    Thank you for the video, but I have to say the piano music at the end made me chuckle! It was like the music for the emotional climax of a romance film, and it weirdly matched the mood of the Pico device working

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

    That intro is good but too long

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

    Thank you for the video. How can one know how to wire the button and the LED? Like how to know the correct port, the correct resistor to use in series witht the LED?

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

      you can read my article on current limiting resistor. You will know how calculations are performed. visit electroniclinic.com

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

    se we learn to put a battery, a switch and LED together. was looking how to connect the pico to a computer and se seen by widows as a device with 1 button (different then a keyboard botton) that I can use to map in games

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

    Leaving out the Pico and the laptop seems more logical for this.

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

    Don't you need a gnd connection to your switch since it's using 3.3v

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

    the button got dedected while nothing was touching it.
    from machine import Pin
    import time
    led = Pin(28,Pin.OUT)
    button = Pin(14,Pin.IN,Pin.PULL_DOWN)
    while True:
    if button.value():
    print("penis") #For test purposes i swear
    led.toggle()
    time.sleep(0.25)
    #it kept saying the word