]> Repositories - hackapet/Adafruit_Blinka_Displayio.git/blobdiff - displayio/parallelbus.py
Merge pull request #53 from makermelissa/master
[hackapet/Adafruit_Blinka_Displayio.git] / displayio / parallelbus.py
index f6e75d688a5327a108fa938c3b9e2b12ecd32b22..be8c66108d8548694a2bf8d1fb6f50f733771d3d 100644 (file)
@@ -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.
         """
         """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.
         """
 
     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")