X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/5cfe68b419b1e014ae334c500569d87b661e4281..6163d6b6514ff95964f773d800082189db85084c:/displayio/parallelbus.py?ds=sidebyside 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")