资料介绍
描述
目标:
创建有助于实现以下目标的设备:
- 虽然允许制造商将药片的温度保持在 -40 到 -30 摄氏度之间,但药片的温度不得一次保持在 -33 到 -30 度之间超过 20 分钟。
- 此外,制造商应记录用于生产片剂的冷却室何时打开。
项目目标:
Capstone 项目的目标如下。
A. 使用 Bolt 和 LM35 传感器构建温度监测系统电路。
- LM35 的 VCC 引脚连接到 Bolt Wifi 模块的 5v。(白线)
- LM35 的输出引脚连接到 Bolt Wifi 模块的 A0(interwetten与威廉的赔率体系 输入引脚)。(灰线)
- LM35 的 GND 引脚连接到 Gnd。(紫线)
B. 在 Bolt Cloud 上创建一个产品,以监控来自 LM35 的数据,并将其链接到您的 Bolt。
C. 编写产品代码,对 Bolt 发送的数据运行多项式回归算法。
带着这个目标,奈杰尔先生成功地满足了政府设定的第一个条件。使用预测数据,只要图表预测温度将保持在 -33 和 -30 摄氏度范围内超过 20 分钟,他就能够及早采取行动。
代码 :
setChartLibrary('google-chart');
setChartTitle('Polynomial Regression');
setChartType('predictionGraph');
setAxisName('time_stamp','temp');
mul(0.0977);
plotChart('time_stamp','temp');
D. 将温度监测电路保持在冰箱内,关闭冰箱门,让系统记录温度读数约 2 小时。
E. 使用您在 2 小时内收到的读数,设置冰箱内温度的界限。
F. 编写一个 Python 代码,每 10 秒获取一次温度数据,如果温度超出您在目标“E”中确定的温度阈值,则发送电子邮件警报。
打开ubuntu服务器。
创建一个文件来存储凭据:
sudo nano email_conf.py
输入以下代码。
MAILGUN_API_KEY = 'This is the private API key which you can find on your Mailgun Dashboard'
SANDBOX_URL= 'You can find this on your Mailgun Dashboard'
SENDER_EMAIL = 'This would be test@your SANDBOX_URL'
RECIPIENT_EMAIL = 'Enter your Email ID Here'
API_KEY = 'This is your Bolt Cloud account API key'
DEVICE_ID = 'This is the ID of your Bolt device'
FRAME_SIZE = 10
MUL_FACTOR = 6
创建主代码文件:
sudo nano capstone_project.py
输入以下代码。
import email_conf, json, time, math, statistics
from boltiot import Email, Bolt
max_limit = 52
min_limit = -52
while True:
response = mybolt.analogRead('A0')
data = json.loads(response)
if data['success'] != 1:
print("There was an error while retriving the data.")
print("This is the error:"+data['value'])
time.sleep(10)
continue
print ("This is the value "+data['value'])
sensor_value=0
try:
sensor_value = int(data['value'])
if sensor_value > max_limit or sensor_value < min_limit:
print("Making request to Mailgun to send an email")
temperature = (100*sensor_value)/1024
response = mailer.send_email("Alert!!", "The temperature of the refrigerator is " +str(temperature))
response_text = json.loads(response.text)
print("Response received from Mailgun is: " + str(response_text['message']))
except e:
print("There was an error while parsing the response: ",e)
continue
G. 修改 Python 代码,同时进行 Z 分数分析,并在检测到异常时打印“有人打开冰箱门”这一行。
H. 调整 Z-score 分析代码,当有人打开冰箱门时,它会检测到异常。
最终代码:
import email_conf, json, time, math, statistics
from boltiot import Email, Bolt
max_limit = 52
min_limit = -52
def compute_bounds(history_data,frame_size,factor):
if len(history_data) return None
if len(history_data)>frame_size :
del history_data[0:len(history_data)-frame_size]
Mn=statistics.mean(history_data)
Variance=0
for data in history_data :
Variance += math.pow((data-Mn),2)
Zn = factor * math.sqrt(Variance / frame_size)
High_bound = history_data[frame_size-1]+Zn
Low_bound = history_data[frame_size-1]-Zn
return [High_bound,Low_bound]
mybolt = Bolt(email_conf.API_KEY, email_conf.DEVICE_ID)
mailer = Email(email_conf.MAILGUN_API_KEY, email_conf.SANDBOX_URL, email_conf.SENDER_EMAIL, email_conf.RECIPIENT_EMAIL)
history_data=[]
while True:
response = mybolt.analogRead('A0')
data = json.loads(response)
if data['success'] != 1:
print("There was an error while retriving the data.")
print("This is the error:"+data['value'])
time.sleep(10)
continue
print ("This is the value "+data['value'])
sensor_value=0
try:
sensor_value = int(data['value'])
if sensor_value > max_limit or sensor_value < min_limit:
print("Making request to Mailgun to send an email")
temperature = (100*sensor_value)/1024
response = mailer.send_email("Alert!!", "The temperature of the refrigerator is " +str(temperature))
response_text = json.loads(response.text)
print("Response received from Mailgun is: " + str(response_text['message']))
except e:
print("There was an error while parsing the response: ",e)
continue
bound = compute_bounds(history_data,email_conf.FRAME_SIZE,email_conf.MUL_FACTOR)
if not bound:
required_data_count=email_conf.FRAME_SIZE-len(history_data)
print("Not enough data to compute Z-score. Need ",required_data_count," more data points")
history_data.append(int(data['value']))
time.sleep(10)
continue
try:
if sensor_value > bound[0] or sensor_value < bound[1]:
print ("Someone has opened the refrigerator door.")
history_data.append(sensor_value);
except Exception as e:
print ("Error",e)
time.sleep(10)
输出:
运行代码:
sudo python3 capstone_project.py
- LM35高精度摄氏温度传感器数据表
- 使用MSP-EXP430F5529、LM35 LCD102x64的温度传感器
- 基于NodeMCU的物联网项目连接LM35温度传感器
- 如何将LM35温度传感器上传到云端
- 使用Bolt和LM35传感器构建温度监控系统
- 使用温度传感器LM35来控制伺服电机速度 3次下载
- 如何使用Arduino和LM35传感器制作温度计
- 使用LM35温度传感器监测食品行业冷库的温度
- 使用LM35和BoltIoT WiFi模块持续监测温度
- 使用单片机实现温度传感器LM35全量程应用测试的C语言实例免费下载 33次下载
- Arduino的LM35温度传感器实验程序和工程文件免费下载 27次下载
- LM35温度传感器的电路原理图和PCB资料免费下载 65次下载
- LM35精密温度传感器的数据手册免费下载 36次下载
- 如何使用蜂鸣器和LM35温度传感器设计温度报警器的详细资料概述 59次下载
- 基于LM35温度传感器的温控系统设计
- 集成温度传感器LM3911构成的恒温控制电路 4527次阅读
- 基于LM35D的温控加热器电路图 1.1w次阅读
- LM35温度传感器功能换为摄氏温度值及设计思路 2.6w次阅读
- 基于采用AT89S51单片机和LM35温度传感器的温度采集显示系统设计 4679次阅读
- LM35与ICL7107构成的温度计电路图 1.6w次阅读
- 集成温度传感器AD590_LM35及其测量电路 2.6w次阅读
- 基于LM35和51单片机的温度采集数码管显示系统 1.4w次阅读
- 基于LM35的单片机温度采集显示系统 8478次阅读
- 基于LM35温度传感器的高精度恒温控制系统 1w次阅读
- 基于LM35温度传感器的温控系统设计 8089次阅读
- lm35测温电路图大全(二款lm35测温电路设计) 2.3w次阅读
- lm35怎么用(lm35工作原理及内部结构_应用电路图) 5.9w次阅读
- LM35温度传感器应用及特性 1.2w次阅读
- 低温传感器 1789次阅读
- 温度传感器 3056次阅读
下载排行
本周
- 1山景DSP芯片AP8248A2数据手册
- 1.06 MB | 532次下载 | 免费
- 2RK3399完整板原理图(支持平板,盒子VR)
- 3.28 MB | 339次下载 | 免费
- 3TC358743XBG评估板参考手册
- 1.36 MB | 330次下载 | 免费
- 4DFM软件使用教程
- 0.84 MB | 295次下载 | 免费
- 5元宇宙深度解析—未来的未来-风口还是泡沫
- 6.40 MB | 227次下载 | 免费
- 6迪文DGUS开发指南
- 31.67 MB | 194次下载 | 免费
- 7元宇宙底层硬件系列报告
- 13.42 MB | 182次下载 | 免费
- 8FP5207XR-G1中文应用手册
- 1.09 MB | 178次下载 | 免费
本月
- 1OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 2555集成电路应用800例(新编版)
- 0.00 MB | 33566次下载 | 免费
- 3接口电路图大全
- 未知 | 30323次下载 | 免费
- 4开关电源设计实例指南
- 未知 | 21549次下载 | 免费
- 5电气工程师手册免费下载(新编第二版pdf电子书)
- 0.00 MB | 15349次下载 | 免费
- 6数字电路基础pdf(下载)
- 未知 | 13750次下载 | 免费
- 7电子制作实例集锦 下载
- 未知 | 8113次下载 | 免费
- 8《LED驱动电路设计》 温德尔著
- 0.00 MB | 6656次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935054次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 78.1 MB | 537798次下载 | 免费
- 3MATLAB 7.1 下载 (含软件介绍)
- 未知 | 420027次下载 | 免费
- 4OrCAD10.5下载OrCAD10.5中文版软件
- 0.00 MB | 234315次下载 | 免费
- 5Altium DXP2002下载入口
- 未知 | 233046次下载 | 免费
- 6电路仿真软件multisim 10.0免费下载
- 340992 | 191187次下载 | 免费
- 7十天学会AVR单片机与C语言视频教程 下载
- 158M | 183279次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138040次下载 | 免费
评论
查看更多