树莓派 第35讲:智能温度测量系统(综合实验)

上传者: sunny_dg_1212 | 上传时间: 2022-05-27 11:05:39 | 文件大小: 3KB | 文件类型: C
第35讲:智能温度测量系统(综合实验)c python import RPi.GPIO as GPIO import importlib import time import sys # BOARD pin numbering LedR = 11 LedG = 12 LedB = 13 Buzz = 15 #ds18b20 = '28-031467805fff' #location = '/sys/bus/w1/devices/' + ds18b20 + '/w1_slave' joystick = importlib.import_module('15_joystick_PS2') ds18b20 = importlib.import_module('26_ds18b20') beep = importlib.import_module('10_active_buzzer') rgb = importlib.import_module('02_rgb_led') joystick.setup() ds18b20.setup() beep.setup(Buzz) rgb.setup(LedR, LedG, LedB) color = {'Red':0xFF0000, 'Green':0x00FF00, 'Blue':0x0000FF} def setup(): global lowl, highl lowl = 29 highl = 31 def edge(): global lowl, highl temp = joystick.direction() if temp == 'Pressed': destroy() quit() if temp == 'up' and lowl < highl-1: highl += 1 if temp == 'down' and lowl >= -5: highl -= 1 if temp == 'right' and highl <= 125: lowl += 1 if temp == 'left' and lowl < highl-1: lowl -= 1 def loop(): while True: edge() temp = ds18b20.read() print 'The lower limit of temperature : ', lowl print 'The upper limit of temperature : ', highl print 'Current temperature : ', temp if float(temp) < float(lowl): rgb.setColor(color['Blue']) for i in range(0, 3): beep.beep(0.5) if temp >= float(lowl) and temp < float(highl): rgb.setColor(color['Green']) if temp >= float(highl): rgb.setColor(color['Red']) for i in range(0, 3): beep.beep(0.1) def destroy(): beep.destroy() joystick.destroy() ds18b20.destroy() rgb.destroy() GPIO.cleanup() if __name__ == "__main__": try: setup() loop() except KeyboardInterrupt: destroy()

文件下载

评论信息

免责申明

【只为小站】的资源来自网友分享,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,【只为小站】 无法对用户传输的作品、信息、内容的权属或合法性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论 【只为小站】 经营者是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。
本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二条之规定,若资源存在侵权或相关问题请联系本站客服人员,zhiweidada#qq.com,请把#换成@,本站将给予最大的支持与配合,做到及时反馈和处理。关于更多版权及免责申明参见 版权及免责申明