X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/138d74a3457378ca0f684654f7cc4d6b8ce0301a..bbc59c23796a87538e9f9b120dd54d6cb7ce72f5:/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")