mirror of
https://bitbucket.org/myhomie/mycorerepository.git
synced 2025-12-06 17:51:20 +00:00
6 lines
91 B
Python
6 lines
91 B
Python
import RPi.GPIO as GPIO
|
|
GPIO.setmode(GPIO.BCM)
|
|
GPIO.setup(4, GPIO.IN)
|
|
|
|
print GPIO.input(4)
|