Created
May 31, 2017 02:36
-
-
Save smoriarty21/cae434a206793211e16e0899f583d022 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import RPi.GPIO as GPIO | |
# use P1 header pin numbering convention | |
GPIO.setmode(GPIO.BOARD) | |
GPIO.setup(11, GPIO.IN) | |
input_value = GPIO.input(11) | |
if (input_value): | |
print 'Need to water' | |
else: | |
print 'No need for water I'm moist' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment