X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/eb647bde5537c8a811581baf7c342475b937362d..bbc59c23796a87538e9f9b120dd54d6cb7ce72f5:/displayio/i2cdisplay.py diff --git a/displayio/i2cdisplay.py b/displayio/i2cdisplay.py index 21fa371..408c2ac 100644 --- a/displayio/i2cdisplay.py +++ b/displayio/i2cdisplay.py @@ -61,11 +61,11 @@ class I2CDisplay: """Performs a hardware reset via the reset pin. Raises an exception if called when no reset pin is available. """ - pass + raise NotImplementedError("I2CDisplay 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("I2CDisplay send has not been implemented yet")