| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-04-21 | displayio: Fix "bus type" problem introduced at 8cba145c9029 | Jeff Epler | |
| When allocate_display_bus_or_raise was factored out, the assignment of the bus's Python type was lost. Restore it. This would have affected displays of any type other than RGBMatrix, when they were created dynamically. Boards with displays configured in flash were unaffected. Closes: #2792 | |||
| 2020-04-19 | RGBMatrix: nonessential change to kick Actions | Jeff Epler | |
| 2020-04-17 | framebufferio: update copyright information | Jeff Epler | |
| 2020-04-17 | RGBMatrix: this comment no longer describes the code | Jeff Epler | |
| ... allocate_display_bus_or_raise() uses fixed storage, not heap storage. | |||
| 2020-04-17 | RGBMatrix: documentation got behind the code | Jeff Epler | |
| 2020-04-17 | RGBMatrix: finish renaming from Protomatter | Jeff Epler | |
| This gets all the purely internal references. Some uses of protomatter/Protomatter/PROTOMATTER remain, as they are references to symbols in the Protomatter C library itself. | |||
| 2020-04-17 | RGBMatrix: remove unneeded properties | Jeff Epler | |
| 2020-04-17 | framebufferio: get width, etc., from protocol, not object property | Jeff Epler | |
| 2020-04-17 | Rename Protomatter -> RGBMatrix | Jeff Epler | |
| This is a quick rename, it changes the user-facing names but not the internal names of things. | |||
| 2020-04-17 | protomatter: move get_width/height to common_hal | Jeff Epler | |
| 2020-04-17 | fix doc build | Jeff Epler | |
| 2020-04-17 | framebufferio: get more properties direct from underlying framebuffer | Jeff Epler | |
| 2020-04-17 | Rename _protomatter -> protomatter | Jeff Epler | |
| I originally believed that there would be a wrapper library around it, like with _pixelbuf; but this proves not to be the case, as there's too little for the library to do. | |||
| 2020-04-17 | framebufferio: get width, height from framebuffer properties | Jeff Epler | |
| 2020-04-17 | Protomatter: add width, height properties | Jeff Epler | |
| 2020-04-14 | Protomatter: Make all arguments kw-only, add rgb count and optional height ↵ | Jeff Epler | |
| checking They're not readily distinguishable by type. I also added the requested height optional parameter; this is checked against the computed one. It's not feasible to use this parameter to artificailly reduce the number of used rows, because changes in the underlying C protomatter library would be required. Finally, I added a better error message when the number of RGB pins was not what was expected. | |||
| 2020-04-14 | protomatter: Respond to review comments | Jeff Epler | |
| - rename oe_pin -> output_enable_pin - improve and reorganize docstrings - rename swapbuffers->refresh - rename "paused" -> "brightness", change semantics slightly - common_hal several functions - clarify why the common_hal routines can't be used directly in the protocol's function pointers - whitespace cleanups - remove prototypes for nonexistent functions | |||
| 2020-04-14 | protomatter: clarify by comment why these functions exist | Jeff Epler | |
| 2020-04-14 | framebufferio: move backlight down to the underlying framebuffer | Jeff Epler | |
| 2020-04-14 | protomatter: code style | Jeff Epler | |
| 2020-04-14 | protomatter: validate pins to give better error message | Jeff Epler | |
| The numbered error from the underlying library is not helpful for beginning users | |||
| 2020-04-14 | protomatter: improve an error message | Jeff Epler | |
| 2020-04-14 | FramebufferDisplay: remove probably not needed constructor arguments | Jeff Epler | |
| 2020-04-14 | protomatter: make docstring match implementation | Jeff Epler | |
| 2020-04-14 | _protomatter: move get/set paused into shared-module | Jeff Epler | |
| 2020-04-14 | Make function name more descriptive | Jeff Epler | |
| 2020-04-14 | use floor division in docstring | Jeff Epler | |
| Co-Authored-By: Scott Shawcroft <scott@tannewt.org> | |||
| 2020-04-14 | Add Protomatter and FramebufferDisplay | Jeff Epler | |
| 2020-04-14 | displayio: implement, use allocate_new_display_bus_or_raise | Jeff Epler | |
| 2020-04-14 | displayio: implement, use allocate_display_or_raise | Jeff Epler | |
| 2020-04-14 | Merge pull request #2767 from jepler/update-ulab | Scott Shawcroft | |
| ulab: Get updates from upstream | |||
| 2020-04-14 | Merge pull request #2756 from caternuson/bitmap_fill | Scott Shawcroft | |
| Add fill method to displayio.Bitmap | |||
| 2020-04-13 | doc updates | Jeff Epler | |
| 2020-04-09 | add docstring, clean up | caternuson | |
| 2020-04-09 | initial working fill | caternuson | |
| 2020-04-09 | ulab/__init__.rst: fix attribute name; uint8 -> uint16 | sommersoft | |
| 2020-03-31 | Merge pull request #2741 from tannewt/fix_packetbuffer_server | Scott Shawcroft | |
| Fix PacketBuffer server support | |||
| 2020-03-28 | Merge pull request #2730 from tannewt/fix_fourwire_phase_polarity | Jeff Epler | |
| Add polarity and phase to FourWire. | |||
| 2020-03-26 | Don't break the function signature | Scott Shawcroft | |
| 2020-03-25 | adding a backlight polarity flag to Display | siddacious | |
| 2020-03-25 | Add exception on small buffer and fix Connecion WRITE handling | Scott Shawcroft | |
| 2020-03-25 | Add polarity and phase to FourWire. | Scott Shawcroft | |
| It was fixed as 0/0 even though it used to get it from the current SPI state. This makes it more explicit with kwargs. Thanks to magpie_lark and kmatocha on the Adafruit Support forum for finding the issue: https://forums.adafruit.com/viewtopic.php?f=60&t=162515 | |||
| 2020-03-17 | Update shared-bindings/ulab/__init__.rst | Jeff Epler | |
| Co-Authored-By: Scott Shawcroft <scott@tannewt.org> | |||
| 2020-03-17 | ulab: update documentation | Jeff Epler | |
| 2020-03-06 | Make ParallelBus reset ping arg required | Dan Halbert | |
| 2020-03-05 | Merge remote-tracking branch 'adafruit/master' into ↵ | Dan Halbert | |
| assert_pin-and-mp_const_none-cleanup | |||
| 2020-03-05 | rename routines to be clearer; fix wiznet arg types | Dan Halbert | |
| 2020-02-29 | missing semicolon | Dan Halbert | |
| 2020-02-29 | update uses of assert_pin_free; remove redundant checks | Dan Halbert | |
| 2020-02-28 | new pin validation routines; don't use mp_const_none if NULL will do | Dan Halbert | |
