summaryrefslogtreecommitdiff
path: root/shared-bindings
AgeCommit message (Collapse)Author
2019-03-26Merge pull request #1674 from pewpew-game/bug1669Scott Shawcroft
Properly calculate BPP for displayio.Bitmap
2019-03-26Merge pull request #1682 from rhwlo/add-socket.recv_intoScott Shawcroft
shared-bindings/socket: add socket.recv_into
2019-03-25Reuse "Not connected" message in bleioRadomir Dopieralski
2019-03-25Properly calculate BPP for displayio.BitmapRadomir Dopieralski
Fix #1669
2019-03-25Reuse existing error message in busio.i2cRadomir Dopieralski
Remove a period from the error message, so that the same message as in SPI and other places in I2C can be re-used.
2019-03-23shared-bindings/socket: add socket_recv_intoJoshua Coats
2019-03-19Fix up sphinxScott Shawcroft
2019-03-19Move Glyph and BuiltinFont into fontioScott Shawcroft
It was confusing in displayio. Fixes #1662
2019-03-13Merge pull request #1640 from tannewt/final_displayio_changesDan Halbert
Final displayio changes before 4.0.0
2019-03-12wrong arg type for PWMOut variable_frequencyDan Halbert
2019-03-12Add better PewPew error messages and update translationsScott Shawcroft
2019-03-12Update displayio docs to add detail to display bus commentsScott Shawcroft
Fixes #1599
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 #1614 from sommersoft/new_freq_inDan Halbert
Add frequencyio.FrequencyIn
2019-03-02update RTD documentationsommersoft
2019-03-02changed width and height to be propertiesDustin Mendoza
2019-03-02Fixed the OnDiskBitmap example to reflect code changesBryan Siepert
2019-03-01Merge branch 'master' of https://github.com/adafruit/circuitpython into ↵sommersoft
new_freq_in
2019-03-01Improve documentationRadomir Dopieralski
2019-03-01Move the frozen pew.py into a submoduleRadomir Dopieralski
2019-03-01Apply review fixes:Radomir Dopieralski
* fix formatting * fix copyrights * fix CIRCUITPYTHON_GAMEPAD guards * add CIRCUITPYTHON_PEW guards to reset * fix module list order
2019-03-01Rebase on top of CircuitPython 4.xRadomir Dopieralski
2019-02-28Handle new buttonsRadomir Dopieralski
2019-02-28Use a dedicated timerRadomir Dopieralski
2019-02-28Add a _pew moduleRadomir Dopieralski
2019-02-26Merge branch 'master' into new_freq_insommersoft
2019-02-25final re-glue; compiles now.sommersoft
2019-02-25added height and width attributes for displayioDustin Mendoza
2019-02-24fix init depssommersoft
2019-02-24Remove bleio classes that aren't done yet.Dan Halbert
2019-02-22Merge branch 'new_master' into new_freq_insommersoft
2019-02-21Fix mount docScott Shawcroft
2019-02-21Add option to disable the concurrent write protectionScott Shawcroft
This allows writing to the filesystem from the host computer and CircuitPython by increasing the risk of filesystem corruption.
2019-02-17A couple build fixes for mp_float_t = double (MICROPY_FLOAT_IMPL_DOUBLE).Lionel Debroux
Signed-off-by: Lionel Debroux <lionel_debroux@yahoo.fr>
2019-02-16starting again; initial addition of 'frequencyio.FrequencyIn'sommersoft
2019-02-15finish Makefile refactoring; nrf builds workDan Halbert
2019-02-15WIP: atmel-samd trinket build worksDan Halbert
2019-02-14Merge pull request #1548 from tannewt/shape_arg_checkDan Halbert
Arg check width and height into Shape.
2019-02-13Arg check width and height into Shape.Scott Shawcroft
Fixes #1537
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-12Update Shape.cTG-Techie
2019-02-12Tweaks based on dhalbert's feedback.Scott Shawcroft
2019-02-12Move terminal font to terminalio from board.Scott Shawcroft
2019-02-11Fixup doc referenceScott 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