10 Raspberry Pi Pico project ideas to get you started

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ม.ค. 2025

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

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

    I have some Pico 2Ws headed my way soon. I'm looking forward to creating some new LED animations with them :) Thank you Kev for the inspiration!

  • @raspberrypi
    @raspberrypi 2 หลายเดือนก่อน +14

    TEN more?!…..

    • @o._.369
      @o._.369 หลายเดือนก่อน

      want a reply? well now you got one

  • @nnsfaka2292
    @nnsfaka2292 2 หลายเดือนก่อน +7

    09:45 Blinking LED
    12:34 Temperture Sencer
    20:00 WeatherBot
    26:51 BurgerBot V2
    36:56 Scroll text With UnicornHAT
    41:15 PicoGraphics
    50:15 BirthDay Card
    53:30 PicoCat
    58:10 Plant Monitoring System
    1:01:25 Drive Led Strips

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

    I assume this all works on pico2w?

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

    A: Why can’t I download this?

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

    # Get the current time
    year, month, day, hour, minute, second, weekday, yearday = time.localtime()
    # Print formatted output
    print("-" * 40)
    # print(f"Time: {timestamp.tm_hour:02}:{timestamp.tm_min:02}:{timestamp.tm_sec:02}")
    print(f"{day:02}/{month:02}/{year} {hour:02}:{minute:02}:{second:02} Temperature: {temperature:.2f}°C")
    time.sleep(5)