summaryrefslogtreecommitdiff
path: root/shared-module/displayio
AgeCommit message (Collapse)Author
2019-03-28Merge pull request #1685 from makermelissa/masterazureScott Shawcroft
Added option to enable toggling CS between init commands
2019-03-27Simplified into fourwire onlyMelissa LeBlanc-Williams
2019-03-27TileGrid: pixel_shader is not always a paletteDan Halbert
2019-03-26Removed parameter so CS is always toggledMelissa LeBlanc-Williams
2019-03-26Added small delay inside toggle for edge casesMelissa LeBlanc-Williams
2019-03-23Moving Toggle to before command fixes driver issueMelissa LeBlanc-Williams
2019-03-23Added option to toggle cs in displayio init sequenceMelissa LeBlanc-Williams
2019-03-20Merge pull request #1670 from tannewt/fontioDan Halbert
Move Glyph and BuiltinFont into fontio
2019-03-20Merge pull request #1676 from pewpew-game/bug1671Scott Shawcroft
Make displayio.Palette support more than 255 colors
2019-03-20Make displayio.Palette support more than 255 colorsRadomir Dopieralski
Fix #1671
2019-03-19Move Glyph and BuiltinFont into fontioScott Shawcroft
It was confusing in displayio. Fixes #1662
2019-03-16after code.py runs, flush filesystem before resetting heapDan Halbert
2019-03-12Standardize TileGrid to x and y properties over positionScott 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-12Accept x and y kwargs into Group for initial position.Scott Shawcroft
2019-03-07Rework background display task to allow reads from SPI SD card during ↵Dan Halbert
display. Clarify code. Handle multiple displays better.
2019-03-06check display-bus transaction status and act accordinglyDan Halbert
2019-03-06Merge pull request #1601 from penguindustin/masterDan Halbert
added height and width attributes for displayio
2019-03-05changed from mp_int_t to uint16_tDustin Mendoza
2019-03-04Merge pull request #1604 from dhalbert/display_wait_for_frame-check-interruptsDan Halbert
Don't wait for display frame if interrupt pending
2019-03-01fixed typoBryan Siepert
2019-03-01fixed whitespace, clarified variable name, and updated error messagesBryan Siepert
2019-02-28added monochrome, 8bpp indexed, and 32bpp ARGB BMPsBryan Siepert
2019-02-28Don't wait for display frame if interrupt pendingDan Halbert
2019-02-25added height and width attributes for displayioDustin Mendoza
2019-02-23(fork rebuild) Initial support for 16bpp 555&565 and 8bpp grayscale bitmapsBryan Siepert
2019-02-21Tweak the backlight PWM rate to be higher that audio range. Fixes #1571Scott Shawcroft
2019-02-19Fix reload while display is updating.Scott Shawcroft
2019-02-19Prevent infinite display update recursion and fix VFS mountingScott Shawcroft
Fixes #1529
2019-02-15Store the original layer in GroupScott Shawcroft
As is we would return the native superclass object only. Fixes #1551
2019-02-13A safe mode fix and displayio fixesScott 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-12Merge pull request #1536 from TG-Techie/patch-4Dan Halbert
DISPIO: end_x can't be > height of shape
2019-02-12DISPIO: end_x can't be > height of shapeTG-Techie
an author must have forgotten to change from height to width after copy paste.
2019-02-12Tweaks based on dhalbert's feedback.Scott Shawcroft
2019-02-11A variety of displayio improvementsScott 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-01Add support for display rotation and raw commandsScott 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-31Correctly handle no backlight pin.Scott Shawcroft
2019-01-31Polish up commentsScott Shawcroft
2019-01-31Remove Sprite referencesScott Shawcroft
2019-01-31More 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-31Support adjustable backlight brightnessScott Shawcroft
2019-01-31Rudamentary backlight supportScott Shawcroft
2019-01-31Hook up the terminal based on the first display.Scott Shawcroft
2019-01-31Begin font parsing and packing for terminalScott Shawcroft
2019-01-31Add terminalioScott Shawcroft
2019-01-31Add TileGridScott Shawcroft
2019-01-23Make palette color ordering consistent with ColorConvertes and fix blinka.Scott Shawcroft
2019-01-23Use common delay function during display init so we don't starve background ↵Scott Shawcroft
tasks.
2019-01-20adding height and width to OnDiskBitmap for #1460Bryan Siepert
2019-01-18Cleanup display rework for PR.Scott Shawcroft
Fixes #1465. Fixes #1337. Fixes #1168
2019-01-17fix nonetype handling and nrf never resetScott Shawcroft