We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 349edc2 + cd173a0 commit 5ffe395Copy full SHA for 5ffe395
drivers/driver_it8951.py
@@ -8,6 +8,8 @@
8
import RPi.GPIO as GPIO
9
except ImportError:
10
pass
11
+except RuntimeError as e:
12
+ print(str(e))
13
14
class IT8951(DisplayDriver):
15
"""A generic driver for displays that use a IT8951 controller board.
drivers/drivers_4in2.py
@@ -23,6 +23,8 @@
23
24
25
26
27
28
29
# The driver works as follows:
30
#
drivers/drivers_base.py
@@ -26,6 +26,8 @@
31
32
33
class DisplayDriver(ABC):
0 commit comments