Skip to content

Commit e23760f

Browse files
author
Matt Land
committed
add explain
1 parent a3e8240 commit e23760f

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

adafruit_imageload/tests/displayio_shared_bindings.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
"""
2+
The classes in this file are designed to emulate Circuitpython's displayio classes
3+
for Bitmap and Palette. These mimic classes should have the same methods and interface as the real interface,
4+
but with extra validation checks, warnings, and messages to facilitate debugging.
5+
6+
Code that can be run successfully against these classes will have a good chance of
7+
working correctly on hardware running Circuitpython, but without needing to upload code to a board
8+
after each attempt.
9+
10+
"""
11+
12+
113
class Bitmap_C_Interface(object):
214
"""
315
Simulates the displayio.Bitmap class for testing

0 commit comments

Comments
 (0)