|
That's not working at all I'm getting below error:
>>> from periphery import GPIO
>>> gpio_out = GPIO(1, "out")
OSError: [Errno 517] Unknown error 517
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/lib/python3.5/dist-packages/periphery/gpio.py", line 89, in _open
f_direction.write(direction + "\n")
OSError: [Errno 517] Unknown error 517
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.5/dist-packages/periphery/gpio.py", line 43, in __init__
self._open(pin, direction)
File "/usr/local/lib/python3.5/dist-packages/periphery/gpio.py", line 91, in _open
raise GPIOError(e.errno, "Setting GPIO direction: " + e.strerror)
periphery.gpio.GPIOError: [Errno 517] Setting GPIO direction: Unknown error 517
>>>
|
|