码迷,mamicode.com
首页 > 其他好文 > 详细

树莓派制作激光报警器

时间:2016-08-21 22:33:16      阅读:708      评论:0      收藏:0      [点我收藏+]

标签:

 

$ sudo pip install RPi.GPIO

 

import RPi.GPIO as GPIO, time, os

GPIO.setmode(GPIO.BOARD)

def RCtime(RCpin):
        reading = 0
        GPIO.setup(RCpin, GPIO.OUT)
        time.sleep(0.1)
        GPIO.setup(RCpin, GPIO.IN)
        while(GPIO.input(RCpin) == GPIO.LOW):
                reading += 1
        return reading

while 1:
        print RCtime(22)
        while (RCtime(22) > 50):
                print "ALARM!"
                alarm = "aplay ALARM9.WAV"
                os.system(alarm)

 

 

参考文章:

《Configuring ALSA Audio output on Analog and HDMI of Raspberry Pi》

《A Raspberry Pi Laser-tripwire》

《5.2. Working with Sound - Playing a sound with Python》

《Reading a Photocell with a Raspberry Pi》

树莓派制作激光报警器

标签:

原文地址:http://www.cnblogs.com/hardi/p/5793718.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!