Billwilliams1952/microVIEW

SPST button control

andiggity opened this issue · 0 comments

Any chance you will add gpio push button control?

I have played around with different commands like:

GPIO.setwarnings(False) # Ignore warning for now
GPIO.setmode(GPIO.BCM)     # set up BCM GPIO numbering
GPIO.setup(16, GPIO.IN, pull_up_down=GPIO.PUD_UP)
GPIO.add_event_detect(16, GPIO.FALLING, callback=CapturePhoto, bouncetime=2500)

So far no luck. Any ideas/ suggestions?