Master GPIO with Raspberry Pi Pico & MicroPython - Part 2

preview_player
Показать описание


Join this channel to get access to perks:

🎖To join the membership at 🥉bronze, 🥈silver or 🥇gold levels, head over to

00:00 Lesson 8 - ADC
01:28 Sponsor Segment
02:50 Lesson 8 continued
03:40 Lesson 9 - Potentiometers
04:51 Lesson 10 - Temperature Sensors
05:27 Lesson 11 - UART
06:32 Lesson 12 - I2C
08:11 Lesson 13 - SPI
09:40 Lesson 14 - Servos
10:52 Lesson 15 - Ultrasonic Range Finders
12:26 Lesson 16 - Ground Pins
13:44 Lesson 17 - Recap and Review

#Pico​ #MicroPython​ #robotics
Рекомендации по теме
Комментарии
Автор

I suspect the spot the video before holiday and after is a tan 😁

martinparker
Автор

Please put a link to Part 1 in the description, have been searching around for ages for it. Also, the "cards" don't show on TV versions of YouTube, so had to come back to mobile and "slum" it!

stupossibleify
Автор

Could you do a video on how to turn a pico into a remote control?

janlaan
Автор

I typed this codefrom machine import Pin

from time import sleep

led = Pin(0, Pin.OUT)

while True:
led.value(0)
sleep(1)
led.value(1)
sleep(1)

but this isn't working the code runs however down there code works

from machine import Pin
import utime

# Initialize LEDs on pins 0 to 4
leds = [Pin(i, Pin.OUT) for i in range(0, 5)]

if __name__ == '__main__':
while True:
# Turn on each LED one by one
for n in range(0, 5):
leds[n].value(1) # Turn on LED
utime.sleep(0.5) # Delay for half a second

# Optionally turn off LEDs after they are all on
for n in range(0, 5):
leds[n].value(0) # Turn off LED
utime.sleep(0.5) # Delay for half a second

is this the result of decting the port atomatically?

chandikawarnakulasooriya
join shbcf.ru