| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-03-29 | Add a missing parameter to an error message (Fixes #4505) | James Carr | |
| 2021-03-29 | Merge pull request #4501 from jepler/rgbmatrix-memoryview | Dan Halbert | |
| RGBMatrix: fix memoryview(matrix) | |||
| 2021-03-27 | RGBMatrix: fix memoryview(matrix) | Jeff Epler | |
| Typical test: ```python import displayio import rgbmatrix import board displayio.release_displays() matrix = rgbmatrix.RGBMatrix( width=128, bit_depth=4, rgb_pins=[board.GP0, board.GP1, board.GP2, board.GP3, board.GP4, board.GP5], addr_pins=[board.GP6, board.GP7, board.GP8, board.GP9], clock_pin=board.GP10, latch_pin=board.GP11, output_enable_pin=board.GP12) mem = memoryview(matrix) mem[0] = 65535 # OK mem[0] = 65536 # errors (out of range) ``` | |||
| 2021-03-26 | run uncrustify | Jeff Epler | |
| 2021-03-26 | bitbangio.SPI.read: Support write_value, fix some other nits | Jeff Epler | |
| 2021-03-19 | Fix PWMOut non-error handling and never reset | Dan Halbert | |
| 2021-03-18 | merge from upstream | Dan Halbert | |
| 2021-03-18 | Merge pull request #4428 from kmatch98/bitmap-read-2 | Jeff Epler | |
| Add `reverse_rows` to speedy bitmaptools.readinto function | |||
| 2021-03-18 | Merge pull request #4429 from jepler/displayio-bitmap-memoryview | Jeff Epler | |
| displayio.Bitmap: Make memoryview()able | |||
| 2021-03-18 | implement function to check usb connection | microDev | |
| 2021-03-17 | Merge pull request #4426 from kmatch98/main | Scott Shawcroft | |
| Add getter for displayio.Palette item transparency/opacity. | |||
| 2021-03-17 | doc fix | Jeff Epler | |
| 2021-03-17 | displayio.Bitmap: Make memoryview()able | Jeff Epler | |
| 2021-03-17 | ran pre-commit for formatting fixes | Kevin Matocha | |
| 2021-03-17 | merge upstream/main | Kevin Matocha | |
| 2021-03-17 | Merge pull request #4403 from jepler/bitmap-read-2 | Jeff Epler | |
| bitmaptools: Add readinto, arrayblit | |||
| 2021-03-16 | add back peculiar r to docstring | Kevin Matocha | |
| 2021-03-16 | add is_transparent getter to displayio.Palette | Kevin Matocha | |
| 2021-03-16 | more doc fixes | Jeff Epler | |
| 2021-03-16 | fix doc error | Jeff Epler | |
| 2021-03-16 | fix stub docs | Jeff Epler | |
| 2021-03-16 | Merge remote-tracking branch 'origin/main' into bitmap-read-2 | Jeff Epler | |
| 2021-03-16 | re-format with uncrustify | Jeff Epler | |
| 2021-03-16 | update more docstrings | Kevin Matocha | |
| 2021-03-16 | update docstrings | Kevin Matocha | |
| 2021-03-16 | Add reverse_rows option to bitmaptools.readinto | Kevin Matocha | |
| 2021-03-16 | Formatting | gamblor21 | |
| 2021-03-15 | add arrayblit | Jeff Epler | |
| 2021-03-15 | Merge branch 'main' into rp_dp_parallel | Mark | |
| 2021-03-15 | run code formatting script | microDev | |
| 2021-03-14 | Merge pull request #4407 from jposada202020/RTC_doc_corrections | Jeff Epler | |
| RTC and Touchin docs changes | |||
| 2021-03-14 | fix docs | Jeff Epler | |
| 2021-03-14 | RTC and Touchin docs changes | jposada202020 | |
| 2021-03-14 | Merge pull request #4402 from jposada202020/analogio_doc_corrections | Jeff Epler | |
| Change in documentation in Analogio | |||
| 2021-03-14 | bitmaptools: Add readinto | Jeff Epler | |
| When reading uncompressed bitmap data directly, readinto can work much more quickly than a Python-coded loop. On a Raspberry Pi Pico, I benchmarked a modified version of adafruit_bitmap_font's pcf reader which uses readinto instead of the existing code. My test font was a 72-point file created from Arial. This decreased the time to load all the ASCII glyphs from 4.9 seconds to just 0.44 seconds. While this attempts to support many pixel configurations (1/2/4/8/16/24/32 bpp; swapped words and pixels) only the single combination used by PCF fonts was tested. | |||
| 2021-03-14 | Change in documentation in Analogio | jposada202020 | |
| 2021-03-12 | Merge pull request #4376 from kmatch98/displayio_bitmap | Scott Shawcroft | |
| add fill_region and draw_line to bitmap_tools | |||
| 2021-03-11 | Changed frequency to match PIO having 2 instructions | gamblor21 | |
| 2021-03-11 | Set frequency default 60Mhz | gamblor21 | |
| 2021-03-11 | Add frequency support to parallel bus | gamblor21 | |
| 2021-03-11 | Move input checks to shared-module, update docstrings | Kevin Matocha | |
| 2021-03-11 | use return values in STM PWMOut constructor, not exceptions | Dan Halbert | |
| 2021-03-10 | add fill_region and draw_line to bitmaptools | Kevin Matocha | |
| 2021-03-07 | Clarify further; fix type error | Dan Halbert | |
| 2021-03-07 | Add clarifying comment re carriage-return char. | Dan Halbert | |
| 2021-03-07 | Document readline() and readlines() | Dan Halbert | |
| 2021-03-07 | fix #4352 | Dan Halbert | |
| 2021-03-07 | Add caveat for usb_cdc.Serial.connected | Dan Halbert | |
| 2021-03-06 | nvm: fix doc markup | Jeff Epler | |
| closes #4336 | |||
| 2021-03-03 | Merge pull request #4315 from dhalbert/rp2040-i2c-short-writes | Dan Halbert | |
| RP2040: Implement short I2C writes (2 bytes or less) using bitbangio | |||
