mirror of
https://github.com/node-red/node-red-nodes.git
synced 2023-10-10 13:36:58 +02:00
7 lines
96 B
Python
7 lines
96 B
Python
|
import sys
|
||
|
try:
|
||
|
import RPi.GPIO as GPIO
|
||
|
sys.exit(0)
|
||
|
except ImportError:
|
||
|
sys.exit(1)
|