ラズベリーで水流センサーを使用する方法?
この水流センサーをラズベリーで使用しようとしています: https://www.adafruit.com/products/828 私はこのpythonコードを使用してパルスを読み取っています。 #!/usr/bin/env python import RPi.GPIO as GPIO import time, sys FLOW_SENSOR = 23 GPIO.setmode(GPIO.BCM) GPIO.setup(FLOW_SENSOR, GPIO.IN, pull_up_down = GPIO.PUD_DOWN) global count count = 0 def countPulse(channel): global count count = count+1 print count GPIO.add_event_detect(FLOW_SENSOR, GPIO.RISING, callback=countPulse) while True: try: time.sleep(1) except KeyboardInterrupt: print '\ncaught keyboard interrupt!, bye' GPIO.cleanup() …