summaryrefslogtreecommitdiff
path: root/shared-bindings/displayio/ParallelBus.c
AgeCommit message (Collapse)Author
2020-07-03Made every init return Nonedherrada
2020-07-03Made most of the requested changesdherrada
2020-07-03Added type hints to displayiodherrada
2020-07-02Removed all 'self, )'dherrada
2020-05-12Swap sphinx to autoapi and the inline stubsScott Shawcroft
2020-05-07Did board, digitalio, displayiodherrada
2020-04-21displayio: Fix "bus type" problem introduced at 8cba145c9029Jeff 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-14displayio: implement, use allocate_new_display_bus_or_raiseJeff Epler
2020-03-06Make ParallelBus reset ping arg requiredDan Halbert
2020-03-05rename routines to be clearer; fix wiznet arg typesDan Halbert
2020-02-29update uses of assert_pin_free; remove redundant checksDan Halbert
2019-08-23Rework based on Dan's reviewScott Shawcroft
2019-08-22Add reset() to display busses to detect whether it worksScott Shawcroft
2019-08-22EPaper displays work mostly.Scott Shawcroft
2019-08-11shared-bindings: Use RUN_BACKGROUND_TASKSJeff Epler
2019-03-12Update displayio docs to add detail to display bus commentsScott Shawcroft
Fixes #1599
2019-03-06check display-bus transaction status and act accordinglyDan Halbert
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-31Fix hallowing and nrf buildsScott Shawcroft
2019-01-18Improvements thanks to danh's reviewScott Shawcroft
2019-01-18Add a bit more to the docsScott Shawcroft
2019-01-17Fix up nrf and using board.SPI in FourWireScott Shawcroft
2019-01-17Fix other builds and hallowingScott Shawcroft
2019-01-16Rework displays in prep for dynamic support and 8bit parallel.Scott Shawcroft