1 Star 0 Fork 16

happens/基于树莓派的智能垃圾分类系统

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
alarm.py 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
CaliFall 提交于 2021-05-03 19:45 . update alarm.py.
# -*-coding:utf-8 -*-
'''
Copyright (c) [2021] [CaliFall]
[GarbageDetectGolf] is licensed under Mulan PSL v2.
You can use this software according to the terms and conditions of the Mulan PSL v2.
You may obtain a copy of Mulan PSL v2 at:
http://license.coscl.org.cn/MulanPSL2
THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
See the Mulan PSL v2 for more details.
'''
import RPi.GPIO as GPIO
import time
channel = 12
gap1 = 0.1
gap2 = 0.2
gap_short = 0.001
bbtime = 2
bbtime_repeat = 3
GPIO.setmode(GPIO.BCM)
GPIO.setup(channel, GPIO.OUT)
def warning():
GPIO.output(channel, False)
for a in range(bbtime_repeat):
for i in range(bbtime):
GPIO.output(channel, True)
time.sleep(gap1)
GPIO.output(channel, False)
time.sleep(gap1)
i += 1
time.sleep(gap2)
GPIO.output(channel, False)
print("BeepBeep")
def warningCam():
GPIO.output(channel, False)
GPIO.output(channel, True)
time.sleep(gap1)
GPIO.output(channel, False)
print("BeepBeep")
def warningNope():
GPIO.output(channel, False)
GPIO.output(channel, True)
time.sleep(gap_short)
GPIO.output(channel, False)
print("BeepBeep")
if __name__ == '__main__':
warningNope()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/happensSB3/predict-garbage-with-pi.git
git@gitee.com:happensSB3/predict-garbage-with-pi.git
happensSB3
predict-garbage-with-pi
基于树莓派的智能垃圾分类系统
master

搜索帮助