Power & Source of Big Ideas

Hello colleagues! Help me please to solve problem with access to GPIO from Python3. I have script gpio-test.py: import RPi.GPIO as GPIO import time led1 = 11 led2 = 13 GPIO.setmode(GPIO.BOARD) GPIO.setup(led1, GPIO.OUT) GPIO.setup(led2, GPIO.OUT) while True: GPIO.output(led1, True) GPIO.output(led2,...