Good day! I have this simple routine.
import RPi.GPIO as GPIO import time GPIO.setmode(GPIO.BOARD) GPIO.setup(22, GPIO.OUT) GPIO.setup(22, GPIO.HIGH) time.sleep(10) I made this test just to turn on a led plugged in the output. The led didn't turn on, so I tried with different ports, and I found that port 8 was the one getting turned on. According to this source http://elinux.org/RPi_Low-level_peripherals it's port 22 the one that should be on high state. Perhaps this library was made for another pin distribution? -- You received this message because you are subscribed to the Google Groups "Project Hosting on Google Code" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-code-hosting. For more options, visit https://groups.google.com/groups/opt_out.

