I have the Raspberry Pi B with Raspbian installed. Im trying to control the GPIO27 (number 13) with a script The script on.py says: import RPi.GPIO as GPIO GPIO.setup(13, GPIO.OUT) GPIO.output(13, True) and off.py says: import RPi.GPIO as GPIO GPIO.setup(13, GPIO.OUT) GPIO.output(13, False) The prob...