We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3b38df7 + 615ad5b commit 5c8796bCopy full SHA for 5c8796b
1 file changed
library/fanshim/__init__.py
@@ -1,6 +1,9 @@
1
import RPi.GPIO as GPIO
2
import time
3
-import plasma
+try:
4
+ from plasma import legacy as plasma
5
+except ImportError:
6
+ import plasma
7
import atexit
8
from threading import Thread
9
0 commit comments