Status changed to 'Confirmed' because the bug affects multiple users.
** Changed in: rpi.gpio (Ubuntu)
Status: New => Confirmed
--
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1899824
Title:
I
** Description changed:
Consider the 3 following scripts :
1~
#!/bin/python3
from gpiozero import Button
import time
import os
stopButton = Button (17)
while True:
if stopButton.is_pressed:
os.system ("sudo shutdown now
** Summary changed:
- RPi.GPIO doesn't detect falling edge (wait_for_edge, add_event_detect)
+ Internal pull-up resistors not working
** Description changed:
Consider the 3 following scripts :
1~
#!/bin/python3
from gpiozero import Button
import t