Waveshare RP2040 Boards: 3 New RP2040 Boards, LCD + LiPo - First Look!

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

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

  • @john_hind
    @john_hind 3 года назад +4

    As I found when fitting an Adafruit Feather 2040 board into a keyboard, the height of the standard battery connector is a real pain and it looks like this connector could be lower profile. But I wish they'd just use solder pads. After all you are not going to avoid soldering with any of these boards anyway!

    • @demoncloud6147
      @demoncloud6147 11 месяцев назад

      it's the CSE only ppl who don't want to solder
      they just like to deal with API and abstracting the hardware away

    • @john_hind
      @john_hind 11 месяцев назад

      @@demoncloud6147 But these Waveshare boards do not come with pins soldered on, so you are going to have to solder to do anything useful anyway! The Adafruit ones at least have a STEMMA I2C socket as well so you can plug in a lot of sensors without soldering. Mostly with these boards, you can do some really simple stuff powering them from USB with no soldering. I suggest if you are ambitious enough to want to power them from a battery, you are probably connecting other sensors and actuators too.

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

    I was hoping for you to show the solder pad of the 10 remaining pin in rp2040 zero...

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

    The non-standard battery connector is a little strange but I would prefer solder pads anyway. What I can't get over is that there's no switch to turn off the power to the board when you have a battery connected. How is that supposed to work?

  • @dans-designs
    @dans-designs 2 года назад +2

    Hey, I have an RP2040-Zero and I having trouble getting the onboard RGB LED to work, Please can you do a tutorial on that? Thank you!

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

      # from chatgpt 24022023 Waveshare RP2040-Zero works 1st time RS
      # too bright, added black and a pause to stop with LED off
      import machine
      import neopixel
      import time
      # Define the number of WS2812 LEDs in the chain and the pin to which they're connected
      num_leds = 1
      pin = machine.Pin(16)
      # Initialize the neopixel object
      np = neopixel.NeoPixel(pin, num_leds)
      # Define the RGB colors
      red = (255, 0, 0)
      green = (0, 255, 0)
      blue = (0, 0, 255)
      black = (0, 0, 0)
      # Loop through the colors and blink the LED once each second
      while True:
      np[0] = red
      np.write()
      time.sleep(.1)
      np[0] = green
      np.write()
      time.sleep(.1)
      np[0] = blue
      np.write()
      time.sleep(.1)
      np[0] = black
      np.write()
      time.sleep(2)

    • @dans-designs
      @dans-designs Год назад

      @@roysutton3722 ah thanks but i managed to solve it by using the neo pixel too 👍

  • @slimhazard
    @slimhazard 3 года назад +3

    As with the Tiny2040, I‘m puzzled by the RP2040-Zero’s castellated edges, on a board that isn‘t flat. The idea is that you have to foresee openings in the carrier board, so that the components on the rear side fit through?

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

    Does the LCD model have Wi-Fi support? Because I am planning on making a weather station with a pi pico w and a Display and if that one has wireless functionality it would be very conver

  • @james10739
    @james10739 3 года назад +1

    What are some ideas of things to do with the zero I mean I guess anything an Arduino can do but does it run other os's I assume

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

      The PIOs are very powerful, parallel, and independent of the two CPUs.
      And it is clocked much faster than Arduino.

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

    I bought a couple of these on Amazon for low cost. I have only 1 question left about them: How do I turn my .py code into a .UF2 file? From what I've seen, this is VERY difficult. Please prove me wrong?

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

    Добрый день, у вас получилось использовать uart на этих платах?

  • @IamTheHolypumpkin
    @IamTheHolypumpkin 3 года назад +1

    I wish they would have choosen an E-paper instead of LCD, saves so much energy, and waveshahare already sells many E-paper displays.

    • @sc0or
      @sc0or 3 года назад

      You can easily solder 20-pins header (or purchase it pre-soldered) and attach to number of e-ink displays with the same connector, or use an SPI/I2C. This is a matter of couple of buxes, Does not matter at all.

    • @james10739
      @james10739 3 года назад

      The LCD is probably something more people would want be that would be a nice addition

    • @lamda9914
      @lamda9914 3 года назад

      The Epaper flash too slow, I don't like it on a dev boards, LCD or OLED are more better

    • @lamda9914
      @lamda9914 3 года назад

      And Waveshare have some E-paper displays just use cell phone NFC flash it, no power, that's awsome.

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

    RP2040-zero is compatible with arduino Ide?

  • @diyrobotronics
    @diyrobotronics 3 года назад +1

    Make some projects using RP2040 boards

  • @samneggs1
    @samneggs1 3 года назад

    Very nice reviews, thank you. Could you look at the SB Components RP2040 hats particularly the Wi-Fi hat with integrated display?

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

    It's a shame about that battery connector. Waveshare has really built up an ecosystem with these Pico sized boards. They have esp32 S2 boards with and without screens in the same form-factor. They are compatible with the Pico hats. I have a GPIO breakout board and an ESP32 Pico board on the way from Amazon. I'm about to find out if they're compatible or I'm gonna fry some stuff.

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

    It isn't the same as the Rasberry Pi Pico, is it? Blinking the onboard LED, for example, doesn't work from the built in examples

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

    LilyGO T-Display has better option if you are into display projects. Small board is very important for Nintendo hacking =)

  • @diyrobotronics
    @diyrobotronics 3 года назад

    Finally online