| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-05-14 | Make Group iterable via a generic native iterator. | Scott Shawcroft | |
| Fixes #1694 | |||
| 2019-05-14 | Merge pull request #1883 from tannewt/fix_1881 | Dan Halbert | |
| Check native object in case of early access | |||
| 2019-05-14 | Update Palette.c | Matt Land | |
| Remove None, add in byte and bytearray examples | |||
| 2019-05-13 | Check native object in case of early access | Scott Shawcroft | |
| If a native displayio object is accessed before it's super().__init__() has been called, then a placeholder is given that will cause a crash if accessed. This is tricky to get right so we detect this case and raise a NotInplementedError instead of crashing. Fixes #1881 | |||
| 2019-05-10 | add documentation of transparency | Matt Land | |
| 2019-05-10 | Add documentation for Palette shared binding | Matt Land | |
| Add documentation for the palette subscript operator and how to use it. | |||
| 2019-04-18 | add Display.__init__() args for brightness and auto_brightness | Dan Halbert | |
| 2019-04-18 | Turn off auto_brightness if brightness is set | Dan Halbert | |
| 2019-04-09 | Tweak pybadge and fix display bugs | Scott Shawcroft | |
| * Update pybadge pins and flash for rev D * TileGrid now validates the type of the pixel_shader. * Display actually handles incoming subclass objects. * MicroPython will inspect native parents to see if special accessors are used. | |||
| 2019-04-08 | Merge remote-tracking branch 'adafruit/master' into fix_cpx_display | Scott Shawcroft | |
| 2019-04-08 | Reorganize board busses into shared-bindings and shared-module. | Scott Shawcroft | |
| 2019-04-06 | Expose displayio.Display.bus | Radomir Dopieralski | |
| With the bus exposed, we can send custom commands to the display, to leverage advanced features specific to the display, which are not exposed by default. | |||
| 2019-04-05 | Always check TileGrid's x, y | Scott Shawcroft | |
| When using an int index you could end up writing past the end of TileGrid's memory. Fixes #1747 | |||
| 2019-04-04 | Added option to easily treat SPI parameter data as commands | Melissa LeBlanc-Williams | |
| 2019-03-27 | Simplified cs toggling into fourwire only | Melissa LeBlanc-Williams | |
| 2019-03-27 | Simplified into fourwire only | Melissa LeBlanc-Williams | |
| 2019-03-26 | Comment Cleanup | Melissa LeBlanc-Williams | |
| 2019-03-26 | Removed parameter so CS is always toggled | Melissa LeBlanc-Williams | |
| 2019-03-26 | Removed parameter so CS is always toggled | Melissa LeBlanc-Williams | |
| 2019-03-26 | Merge branch 'master' of https://github.com/adafruit/circuitpython into ↵ | Melissa LeBlanc-Williams | |
| ssd1351-fix | |||
| 2019-03-26 | Merge branch 'master' of https://github.com/adafruit/circuitpython | Melissa LeBlanc-Williams | |
| 2019-03-25 | Properly calculate BPP for displayio.Bitmap | Radomir Dopieralski | |
| Fix #1669 | |||
| 2019-03-24 | Added Single Byte Boundaries option for certain displays | Melissa LeBlanc-Williams | |
| 2019-03-24 | Updated RTD comment to reflect new param defaulting True | Melissa LeBlanc-Williams | |
| 2019-03-23 | Enable CS toggle for displayio by default | Melissa LeBlanc-Williams | |
| 2019-03-23 | Added new parameter description in displayio RTD comment | Melissa LeBlanc-Williams | |
| 2019-03-23 | Added option to toggle cs in displayio init sequence | Melissa LeBlanc-Williams | |
| 2019-03-19 | Fix up sphinx | Scott Shawcroft | |
| 2019-03-19 | Move Glyph and BuiltinFont into fontio | Scott Shawcroft | |
| It was confusing in displayio. Fixes #1662 | |||
| 2019-03-12 | Update displayio docs to add detail to display bus comments | Scott Shawcroft | |
| Fixes #1599 | |||
| 2019-03-12 | Standardize TileGrid to x and y properties over position | Scott Shawcroft | |
| This brings it inline with Group. Also fixes #1613 This also includes a number of fixes for where a method is called through a subclass. We now correctly get the native object. Fixes #1567 Lastly, this adds subscript support to TileGrid for changing tile indices. Similar to Bitmap, it accepts ints or 2-tuples. | |||
| 2019-03-12 | Accept x and y kwargs into Group for initial position. | Scott Shawcroft | |
| 2019-03-07 | Rework background display task to allow reads from SPI SD card during ↵ | Dan Halbert | |
| display. Clarify code. Handle multiple displays better. | |||
| 2019-03-06 | check display-bus transaction status and act accordingly | Dan Halbert | |
| 2019-03-06 | Merge pull request #1601 from penguindustin/master | Dan Halbert | |
| added height and width attributes for displayio | |||
| 2019-03-05 | changed from mp_int_t to uint16_t | Dustin Mendoza | |
| 2019-03-02 | changed width and height to be properties | Dustin Mendoza | |
| 2019-03-02 | Fixed the OnDiskBitmap example to reflect code changes | Bryan Siepert | |
| 2019-02-25 | added height and width attributes for displayio | Dustin Mendoza | |
| 2019-02-14 | Merge pull request #1548 from tannewt/shape_arg_check | Dan Halbert | |
| Arg check width and height into Shape. | |||
| 2019-02-13 | Arg check width and height into Shape. | Scott Shawcroft | |
| Fixes #1537 | |||
| 2019-02-13 | A safe mode fix and displayio fixes | Scott Shawcroft | |
| * Fixes safe mode on the SAMD51. The "preserved" value was being clobbered by the bootloader. * Fixes auto-reload loop when in safe mode. * Fixes reading Group children with []. * Check that a TileGrid actually moves before queueing a refresh. | |||
| 2019-02-12 | Update Shape.c | TG-Techie | |
| 2019-02-12 | Tweaks based on dhalbert's feedback. | Scott Shawcroft | |
| 2019-02-11 | Fixup doc reference | Scott Shawcroft | |
| 2019-02-11 | A variety of displayio improvements | Scott Shawcroft | |
| This changes a number of things in displayio: * Introduces BuiltinFont and Glyph so the built in font can be used by libraries. For boards with a font it is available as board.TERMINAL_FONT. Fixes #1172 * Remove _load_row from Bitmap in favor of bitmap[] access. Index can be x/y tuple or overall index. Fixes #1191 * Add width and height properties to Bitmap. * Add insert and [] access to Group. Fixes #1518 * Add index param to pop on Group. * Terminal no longer takes unicode character info. It takes a BuiltinFont instead. * Fix Terminal's handling of [###D vt100 commands used when up arrowing into repl history. * Add x and y positions to Group plus scale as well. * Add bitmap accessor for BuiltinFont | |||
| 2019-02-01 | Clarify rotation parameter | Scott Shawcroft | |
| 2019-02-01 | Add support for display rotation and raw commands | Scott Shawcroft | |
| Display rotation is relative to the scan order of the display. The scan order can be found by scrolling the display with command 0x37 `display_bus.send(0x37, struct.pack(">H", i % 128))` Fixes #1504 | |||
| 2019-01-31 | Correct TileGrid class name. | Scott Shawcroft | |
| 2019-01-31 | Correctly handle no backlight pin. | Scott Shawcroft | |
