-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question about read right #33
Comments
To answer this question correctly it would be necessary to know how the button is connected to the RPi 2, so I'm going to have to guess here. Here's the guess: GPIO 18 is being used as the input and the pull-down resistor for GPIO 18 is activated. The pull-down resistor is activated by default for GPIO 18 as can be seen in table 6-31 on page 102 of the BCM2835 ARM Peripherals documentation. Because the pull-down resistor is activated, the value of GPIO 18 is 0 when the button is not pressed. When the button is pressed, it's pulled to 0V, so there is no change in it's value and no change can be detected. In the Python program the pull-up resistor is activated, so it functions as expected. If this is the case, using a GPIO which is pulled-up by default (see table 6-31) should solve the problem. Alternatively, the pull-up for GPIO 18 could be activated as described here Note that the gpio-admin has been abandoned, and I wouldn't recommend using it any more. It does not function correctly on the RPi 2, see here. |
@MakiseKurisu is this still an issue? |
Thank you. That is the issue. I'm using pin 5 and everything is perfectly fine. I installed gpio-admin since the guide in adafruit has it. Maybe you want to add a warning in your readme.md. |
Ok, that's good to hear and thanks for the feedback. The Adafruit Learning System section of the readme has been updated to warn against using the gpio-admin tool. I also sent a message to Adafruit and hopefully they'll update the article. |
I'm using RPi 2 with onoff. On my machine I cannot read gpio no matter I export the pin using gpio-admin or not. However as soon as I use python to read the same pin, node.js can get the value even if I unexport the pin with gpio-admin. How can this happen?
The code I'm using:
The text was updated successfully, but these errors were encountered: