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
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
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?
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
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
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
Bro I was getting into the intro music!! Great and simple video by the way exactly what I needed to get me going
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
That intro is good but too long
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?
you can read my article on current limiting resistor. You will know how calculations are performed. visit electroniclinic.com
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
Leaving out the Pico and the laptop seems more logical for this.
Don't you need a gnd connection to your switch since it's using 3.3v
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