pico-micropython-examples icon indicating copy to clipboard operation
pico-micropython-examples copied to clipboard

Examples to accompany the "Raspberry Pi Pico Python SDK" book.

Results 26 pico-micropython-examples issues
Sort by recently updated
recently updated
newest added

Works well up to a 200 kHz input signal - deviation below 1% of frequency and duty cycle. The example has a build-in testmode. Lower frequencies are dead on, higher...

enhancement

Controls one servo at GP16 and additionally the onboard LED This demonstrates use of two servos.

enhancement

In order to get the example working correctly with RGBW rings, line 12 should be adjusted to use a pull_thresh=32 (instead of 24).

enhancement

In the [Python SDK documentation](https://datasheets.raspberrypi.org/pico/raspberry-pi-pico-python-sdk.pdf), figure 8 is used a second time instead of figure 9, which should show the wiring for a SH1106-based OLED.

documentation

the ssd1306 oled example requires a module downloaded from pypi (within thonny or manually) should the adoc mention that?

documentation

# Pico serial terminal A simple example to allow a Pico to act as a serial terminal into another Raspberry Pi computer. Useful for setting up a Pi when network...

How do you synchronize 5 different PWM channels (3 slices) so they start at the same time?

Could it be that there is an issue somewhere in the code for the pio_spi. For me i only get MOSI getting pulled low trying to send something. It could...

In example we are shown how to read PIO IRQs from Python https://github.com/raspberrypi/pico-micropython-examples/blob/master/pio/pio_irq.py However it seems that this clears IRQ, and allows a `irq(block, 0)` command to continue. Is there...