element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum A new RPI Pico in the works?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 16 replies
  • Subscribers 656 subscribers
  • Views 3908 views
  • Users 0 members are here
Related

A new RPI Pico in the works?

scottiebabe
scottiebabe over 1 year ago

Eben Upton Hints at an RP2040 Successor, Promises a Raspberry Pi Compute Module 5 in 2024

"We know what people don't like [and] what people do like," Upton says, "and we have a chip team."

I will call a spade a spade and say the sleep current of the RP2040 @ 1 mA is atrocious. I sincerely hope they improve the sleep current.

I think the QSPI memory controller could be improved as well.

Maybe more PIO memory...

But I don't have that many criticism about the pico.. 

Does the pico have any sore points for you?

  • Sign in to reply
  • Cancel
Parents
  • tonygo
    tonygo over 1 year ago

    The only thing I have issues with is at the bottom end of the ADC. It never gives a proper zero. It jumps about between 300 and 700. You can adjust for most situations with a bit of code:

    # Set up the potentiometers in a list
    pots = [] # Empty list of potentiometers
    for i in range(3):
        pot = ADC(i)
        pots.append(pot)

    # Function to get a number from the position of the potentiometer
    def get_pot_no(adc, maxx):
        reading = pots[adc].read_u16()
        # Adjust low end
        reading = reading - 700
        if reading < 0:
            reading = 0
        result = int((maxx * reading)/(65535-750)*1.01) # rescale
        # Adjust top end
        if result > maxx:
            result = maxx
        return result # Send answer back to main program

    print(get_pot_no(2,100))

    The problem is that this throws off voltage conversion if you need a real voltage.

    It is probably associated with the conversion of the 12-bit ADC reading to 16 bits to fit in with PWM

    Please, give us a proper zero next time.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • scottiebabe
    scottiebabe over 1 year ago in reply to tonygo

    Yes, ++ your recommendation, the ADC isn't that great. I never trust it beyond 8 bits. 

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • scottiebabe
    scottiebabe over 1 year ago in reply to tonygo

    Yes, ++ your recommendation, the ADC isn't that great. I never trust it beyond 8 bits. 

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube