I am currently trying to turn an LED off but it is not working. (LED is always on, yes I do have a resistor 220 ohm)
I have Wiringpi installed and looking at the readall data I do not see any change when I run my commands.
I have tried directly in the python program, creating a python script and running it, running python from terminal, and using the wiringpi gpio commands. I have also tried doing all of this with sudo as well.
import RPi.GPIO as gpio gpio.setmode(gpio.BCM) gpio.setup(17, gpio.OUT) gpio.output(17, False)