pimoroni-pico VS wizio-pico

Compare pimoroni-pico vs wizio-pico and see what are their differences.

pimoroni-pico

Libraries and examples to support Pimoroni Pico add-ons in C++ and MicroPython. (by pimoroni)

wizio-pico

Raspberry Pi Pico development platform for PlatformIO (by Wiz-IO)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
pimoroni-pico wizio-pico
25 4
1,202 171
3.7% -
8.9 3.0
5 days ago about 1 year ago
C Python
MIT License -
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

pimoroni-pico

Posts with mentions or reviews of pimoroni-pico. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-02.
  • Family Photos vs 256 Kb RAM
    5 projects | news.ycombinator.com | 2 Jun 2023
    It takes some time to decode, but I can grab- for example- this 259k JPEG: http://placekitten.com/3840/2160

    And display it from the microSD card with this code: https://gist.github.com/Gadgetoid/0b8e352e377135d743338c9483...

    As more or less demonstrated by this example: https://github.com/pimoroni/pimoroni-pico/blob/main/micropyt...

    Decoding is done via Larry Bank's JPEGDEC: https://github.com/bitbank2/JPEGDEC

    It uses roughly 20k RAM to provide the necessary buffers both for decoding JPEGs into blocks which are passed to a drawing routine that handles copying the data into the display RAM buffer (on our larger Inky display this is backed by PSRAM). I don't believe there's a hard limit to the size of the JPEGs you can display. The main bottlenecks are decoding time and the relatively limited scaling options: FULL, HALF, QUARTER, EIGHTH.

    This aside, the authors solution is actually quite elegant. As long as you have control over the image pipeline there's no real reason to encumber the device with handling large (both in bytes and pixel dimensions) files. You'll also get much better dithering results writing your own routine to convert files from JPG to the raw 4-bits per pixel format for the display. Our built-in dithering is just a plain ordered dither matrix and, while quaint and retro, it leaves much to be desired visually.

    If you're trying to use a public API you can also make GitHub actions automate the whole image conversion process and publish the results to GitHub pages. This works great for, for example, the daily XKCD, serving both to reformat the strip for the display, credit the author, extract the "alt" text and avoid excess requests to the origin. Eg: https://pimoroni.github.io/feed2image/xkcd-800x480-daily.jpg. Though the astute will notice I still opted for jpeg in this case.

  • Ask HN: Getting started with DIY programming of electronics
    1 project | news.ycombinator.com | 11 May 2023
    I've done a lot of programmable LED projects (keyword Neopixel or WS2812) and by far my favorite hardware has been this little raspberry pi pico board that takes care of the power requirements for you, a USB-C cable can supply 3 amps, powering one or two hundred LEDs with ease. There's lot of Arduino boards that let you program a few neopixels, but supplying power for lots of them is usually the annoying part.

    https://shop.pimoroni.com/en-us/products/plasma-2040

    https://github.com/pimoroni/pimoroni-pico/tree/main/micropyt...

  • Sony backs Raspberry Pi with fresh funding, access to A.I. chips
    2 projects | news.ycombinator.com | 12 Apr 2023
    https://shop.pimoroni.com/collections/pico is the pi version of that.

    I'm still not sure why the BBC went down the route of making its own platform when adapting the arduino world would have been simpler and more effective. Still its good to see that the BBC is doing computing again.

  • Pico I2C problem with SCD41 sensor
    2 projects | /r/raspberrypipico | 2 Apr 2023
    I have a problem with an I2C connection to a SCD41 sensor (Pimoroni Breakout). The strange thing is: The example provided by Pimoroni works perfectly fine.
  • Pico KuCoin Trader gadget - I spent too long on the UI and forgot I need memory for the API and important code. Not sure how to rescue the project, or I'm just asking too much from the Pico?
    3 projects | /r/raspberrypipico | 4 Feb 2023
    But I'm using the https://github.com/pimoroni/pimoroni-pico firmware with the PicoGraphics module. There doesn't seem to much documentation about compiling their version (except the c version?)
  • Static Image on a 0.96inch display
    1 project | /r/raspberrypipico | 2 Feb 2023
  • Not much Pi, but it has a RP2040 on board - Waveshare Round LCD
    1 project | /r/raspberry_pi | 1 Feb 2023
  • Pico W and RGB matrix 64x64 project help
    1 project | /r/raspberrypipico | 15 Jan 2023
    I used the Pimoroni Micropython and the clock.py here.
  • Can you use a real computer to replace a Raspberry Pi?
    2 projects | /r/raspberry_pi | 10 Jan 2023
  • Remember to say no to walled garden/non-modular stuff
    2 projects | /r/raspberrypipico | 2 Jan 2023
    However you'll find that the file you have linked includes breakout_sgp30.hpp which in turn includes drivers/sgp30/sgp30.hpp which you can find here: https://github.com/pimoroni/pimoroni-pico/tree/main/drivers/sgp30

wizio-pico

Posts with mentions or reviews of wizio-pico. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-25.
  • PicoVGA Library with VSCode PlatformIO
    1 project | /r/raspberrypipico | 13 Jan 2023
  • Pi Pico: How can I set up an enviroment to program it using the official C SDK?
    1 project | /r/embedded | 29 May 2022
    It seems like PlatformIO goes out of it's way to prevent me from importing stuff like this. So I decided to give https://github.com/Wiz-IO/wizio-pico/ a try, an unofficial 3rd party "platform" for the Pi Pico. However, while it does build fine, it does not automatically upload. I posted the issue here yesterday. https://github.com/Wiz-IO/wizio-pico/issues
  • Raspberry Pico: Simple Debugging with just one Device
    4 projects | dev.to | 25 Apr 2021
    This blog pot continues the Pico setup series and will detail how to setup a fully working debugger in VS Studio Code. Keep in mind that ultimately the steps are based on explanations from pico-debug project, and wizio-pico, but the setup is complex so I wrote a summarizing blog article. Follow along and you will be debugging your Pico C programs with the press of a simple launch button.
  • Raspberry Pico: The Simple Startup with PlatformIO
    3 projects | dev.to | 18 Apr 2021
    Getting the Raspberry Pico C SDK up and running with its complex toolchain can be simplified greatly. Thanks to the great wizio-pico project, you can setup a PlatformIO Visual Studio Code IDE in minutes and develop your Pico project with the full power of the C SDK. No need to add project dependencies to CMake files, no manual drag and drop of UF2 files to start your program. It almost feels like programming for an Arduino. And if you have a background in Arduino, you might feel delighted that you can use Arduino C to program your Pico.

What are some alternatives?

When comparing pimoroni-pico and wizio-pico you can also consider the following projects:

yocto-8 - A (WIP) PICO-8 cartridge runner for the Raspberry Pi Pico

pico-debug - virtual debug pod for RP2040 "Raspberry Pi Pico" with no added hardware

badger2040 - Sample code I used to design my badge for events to share information with attendees

framework-wizio-pico - framework-wizio-pico

microphone-library-for-pico - Capture audio from a microphone on your Raspberry Pi Pico or any RP2040 based board. 🎤

MicroPython-Firmware-Development - A comprehensive and FREE Online MicroPython Firmware Development tutorial utilizing a Raspberry Pi Pico going step-by-step into the world of Python for microcontrollers.

BME280_SensorAPI - Bosch Sensortec BME280 sensor driver. To report issues, go to https://community.bosch-sensortec.com/t5/Bosch-Sensortec-Community/ct-p/bst_community

pico-project-bootstrap - Kickstart your RP2040 Pico Projects with VS Code integrated one-click compile/upload, one-click debugging

pico-composite8 - Raspberry Pi Pico NTSC 8-bit Composite Video output using Resistor R2R DAC, interlaced at 640x480, with slideshow on second core.

openocd

picotetris - Tetris on a Raspberry Pi Pico mounted on a Pimoroni Pico Explorer