X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/eb647bde5537c8a811581baf7c342475b937362d..6163d6b6514ff95964f773d800082189db85084c:/displayio/parallelbus.py diff --git a/displayio/parallelbus.py b/displayio/parallelbus.py index f6e75d6..be8c661 100644 --- a/displayio/parallelbus.py +++ b/displayio/parallelbus.py @@ -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")