Go to advanced search

by Josiah
Sat Oct 12, 2013 11:52 pm
Forum: Python
Topic: My GPIO port is not responding
Replies: 9
Views: 2140

GPIO still won`t work

My GPIO won`t work: I wrote code to make an LED flash, but nothing seems to work. I`ve made sure that the code is updated, the LED is correctly inserted, and it still does not work. What now?

Thank you for your ideas!
by Josiah
Tue Oct 08, 2013 2:14 am
Forum: Python
Topic: My GPIO port is not responding
Replies: 9
Views: 2140

My GPIO port is not responding

Hi Everybody, I am new to the Raspberry Pi, and when I wrote a Python script to blink an LED, here, is the code I used: import RPi.GPIO as GPIO import time GPIO.setup(11, GPIO.OUT) while True: GPIO.output(11, True) time.sleep(2) GPIO.output(11, False) time.sleep(2) It gave me an error message that s...

Go to advanced search