X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/5cfe68b419b1e014ae334c500569d87b661e4281..bbc59c23796a87538e9f9b120dd54d6cb7ce72f5:/displayio/parallelbus.py?ds=inline diff --git a/displayio/parallelbus.py b/displayio/parallelbus.py index 16ad0f1..be8c661 100644 --- a/displayio/parallelbus.py +++ b/displayio/parallelbus.py @@ -21,7 +21,7 @@ # THE SOFTWARE. """ -`displayio` +`displayio.parallelbus` ================================================================================ displayio for Blinka @@ -65,11 +65,11 @@ class ParallelBus: """Performs a hardware reset via the reset pin. Raises an exception if called when no reset pin is available. """ - pass + raise NotImplementedError("ParallelBus reset has not been implemented yet") def send(self, command, data): """Sends the given command value followed by the full set of data. Display state, such as vertical scroll, set via ``send`` may or may not be reset once the code is done. """ - pass + raise NotImplementedError("ParallelBus send has not been implemented yet")