| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-06-13 | Minor tweaks based on Dan's feedback | Scott Shawcroft | |
| 2019-06-12 | Add partial display update support. | Scott Shawcroft | |
| Different operations to the display tree have different costs. Be aware of these costs when optimizing your code. * Changing tiles indices in a TileGrid will update an area covering them all. * Changing a palette will refresh every object that references it. * Moving a TileGrid will update both where it was and where it moved to. * Adding something to a Group will refresh each individual area it covers. * Removing things from a Group will refresh one area that covers all previous locations. (Not separate areas like add.) * Setting a new top level Group will refresh the entire display. Only TileGrid moves are optimized for overlap. All other overlaps cause sending of duplicate pixels. This also adds flip_x, flip_y and transpose_xy to TileGrid. They change the direction of the pixels but not the location. Fixes #1169. Fixes #1705. Fixes #1923. | |||
| 2019-04-18 | add Display.__init__() args for brightness and auto_brightness | Dan Halbert | |
| 2019-04-05 | Added comment regarding parameter loop | Melissa LeBlanc-Williams | |
| 2019-04-04 | Added option to easily treat SPI parameter data as commands | Melissa LeBlanc-Williams | |
| 2019-04-01 | Removed unnecessary bit-ANDing | Melissa LeBlanc-Williams | |
| 2019-03-31 | Improved readability of Single Byte Bounds code | 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 | 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 | Added small delay inside toggle for edge cases | Melissa LeBlanc-Williams | |
| 2019-03-26 | Added small delay inside toggle for edge cases | Melissa LeBlanc-Williams | |
| 2019-03-25 | Fixed wrong operator | Melissa LeBlanc-Williams | |
| 2019-03-24 | Added Single Byte Boundaries option for certain displays | Melissa LeBlanc-Williams | |
| 2019-03-23 | Moving Toggle to before command fixes driver issue | Melissa LeBlanc-Williams | |
| 2019-03-23 | Added option to toggle cs in displayio init sequence | Melissa LeBlanc-Williams | |
| 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-02-28 | Don't wait for display frame if interrupt pending | Dan Halbert | |
| 2019-02-25 | added height and width attributes for displayio | Dustin Mendoza | |
| 2019-02-21 | Tweak the backlight PWM rate to be higher that audio range. Fixes #1571 | 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 | Correctly handle no backlight pin. | Scott Shawcroft | |
| 2019-01-31 | More improvements to Terminal: | Scott Shawcroft | |
| * Fix Hallowing. * Fix builds without displayio. * Fix y bounds that appears as untrollable row of pixels. * Add scrolling to TileGrid. * Remove Sprite to save space. TileGrid is a drop in replacement. | |||
| 2019-01-31 | Support adjustable backlight brightness | Scott Shawcroft | |
| 2019-01-31 | Rudamentary backlight support | Scott Shawcroft | |
| 2019-01-31 | Hook up the terminal based on the first display. | Scott Shawcroft | |
| 2019-01-23 | Use common delay function during display init so we don't starve background ↵ | Scott Shawcroft | |
| tasks. | |||
| 2019-01-17 | Fix other builds and hallowing | Scott Shawcroft | |
| 2019-01-16 | Rework displays in prep for dynamic support and 8bit parallel. | Scott Shawcroft | |
