×

高温可编程报警开源分享

消耗积分:0 | 格式:zip | 大小:0.18 MB | 2022-12-13

分享资料个

描述

介绍

在一些应用中,需要对系统进行温度监测。这样,为了提醒用户,就需要使用传感器进行监控和光、声信号。

考虑到这个问题,我们开发了一个监控温度的系统。当温度超过用户设定的值时,将激活LED蜂鸣器以提醒用户。

现在,让我们了解如何开发以下功能:

但首先,我们将解释威廉希尔官方网站 ,然后介绍开发的所有编程逻辑。

项目电子威廉希尔官方网站

此后,我们将讨论并展示图 1 中的威廉希尔官方网站 。

对于这个项目,使用了三个按钮

按钮(+):负责增加温度值的调整;

按钮(-):负责降低温度值的调整;

按钮(S):负责设置系统中的温度调节信息。

 
poYBAGOX2LqAeJ7eAACYJAoOixg947.png
图 1 - 高温报警威廉希尔官方网站 。
 

Arduino读取DS18B20 传感器的温度并将此信息发送到16x2 LCD屏幕。图 2 显示了DS18B20 传感器Arduino的组装威廉希尔官方网站

 
poYBAGNXNEiATEKEAAAwkE5Ye70098.png
图 2 - DS18B20 传感器威廉希尔官方网站 。(来源:components101)
 

通过这个威廉希尔官方网站 ,Arduino将使用DS18B20 传感器读取温度如果读取的温度超过调节温度,LED蜂鸣器将被激活以供用户使用。

现在,您将学习如何实现该系统的所有功能。

系统编程

从图 1 所示的威廉希尔官方网站 中,我们设置了所有项目编程逻辑。

系统上电后,会出现PCBWay Factory Message,如图 3 所示。

 
pYYBAGOX2OqAXLDeAAi7cTGXL_c830.jpg
图 3 - 消息 PCB 工厂 PCBWay。
 
#include 
#include 
#include 
#include 
  
const int rs = 2, en = 3, d4 = 4, d5 = 5, d6 = 6, d7 = 7;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
#define ONE_WIRE_BUS 8 
/********************************************************************/
OneWire oneWire(ONE_WIRE_BUS); 
/********************************************************************/
DallasTemperature sensors(&oneWire);
unsigned int verificador = 0;
bool increment, decrease, set = 0; 
bool IncrementState = 0, DecreaseState = 0, EstadoSet = 0;
unsigned int temperature = 0;
byte PreviousValue = 0;
#define EndVerif 120 
#define EndTemp  125
void setup()
{
     lcd.begin(16, 2);
     delay(500);
     lcd.setCursor(3,0);
     lcd.print("Factory");
     lcd.setCursor(6,1);
     lcd.print("PCBWay");
     delay(3000);
     sensors.begin();
     lcd.clear();    
     pinMode(13, OUTPUT);
     temperature = EEPROM.read(EndTemp);
}
void loop() 
{
        set = digitalRead(12);
        if(set == 1) 
        {
          lcd.clear();
          lcd.setCursor(2,0);
          lcd.print("Reconfigure ?");
          lcd.setCursor(0,1);
          lcd.print("Yes (+)  No (-)");
          do
          {
          increment = digitalRead(10); 
          decrease  = digitalRead(11); 
          delay(50);
             if(increment == 1 && decrease == 0)
             {
              EEPROM.write(EndVerif,0);
             }
          }while(increment == 0 && decrease == 0);
              lcd.clear();
        }
         verificador = EEPROM.read(EndVerif);
     if(verificador != 75)
     {
       lcd.setCursor(3,0);
       lcd.print("Configure");
       lcd.setCursor(0,1);
       lcd.print("Temperature:");
             
       temperature = EEPROM.read(EndTemp); 
          
           do
           {
             
             increment = digitalRead(10);
             decrease = digitalRead(11); 
  
             set        = digitalRead(12); 
  
               delay(200);
  
                 if(increment == 1 && IncrementState == 0)
                 {
                   temperature++; //Incrementa o valor da temperatura
                   IncrementState = 1;  
                 }
                 if(increment == 0 && IncrementState == 1)
                 {
                   IncrementState = 0; 
                 }
  
  
                 if(decrease == 1 && DecreaseState == 0)
                 {
                   temperature--; //Decrementa o valor da temperatura
                   DecreaseState = 1;   
                 }
  
                 if(decrease == 0 && DecreaseState == 1)
                 {
                   DecreaseState = 0; 
                 }
            lcd.setCursor(13,1); 
  
            lcd.print("  ");
            lcd.setCursor(13,1); 
  
            lcd.print(temperature);      
           }while(set != 1);
           lcd.clear();
           EEPROM.write(EndVerif,75); 
           EEPROM.write(EndTemp, temperature);
     }
            sensors.requestTemperatures(); 
  
            float TempSensor = sensors.getTempCByIndex(0);
               if(TempSensor != PreviousValue)
               {
                lcd.setCursor(2,0);
                lcd.print("Temperature");
                lcd.setCursor(4,1);
                lcd.print(TempSensor);
                lcd.print((char)223);
                lcd.print("C");
                   PreviousValue = TempSensor;
                if(TempSensor >= temperature)
                {
                   digitalWrite(9, HIGH);
                   digitalWrite(13, HIGH);
                   delay(1000);
                   digitalWrite(9, LOW);
                   digitalWrite(13, LOW);  
                   delay(1000);
                }
                if(TempSensor < temperature)
                {
                   digitalWrite(9, LOW);
                   digitalWrite(13, LOW); 
                }
              }                         
}

然后,我们在 void setup 函数中设置传感器和LCD ,最后,我们读取内存中的温度调节值。

当机器关闭并且我们需要打开以使用相同的设定温度值时,此读取过程很有用。

temperature = EEPROM.read(EndTemp);

在循环函数的开头,我们实现了一个条件来检查设置按钮是否被按下。如果是,系统将显示温度设置菜单,如图 4 所示。

 
pYYBAGOX2R2AUgbLAAkCAHGhXM4874.jpg
图 4 - 确认警报温度调整的屏幕。
 

此时出现温度调节画面,如图5所示,用户可以选择yes或no。如果用户按否,则不会调节温度。但是,如果是,用户将调整温度值。

 
pYYBAGOX2VaARPj1AAknqtsdImg820.jpg
图 5 - 高温警报调整屏幕。
 

当用户按下yes 时,系统会将值0 写入EEPROM 存储器的End Verif (120) 位置。这是表示需要输入新的温度设定值的信号。

在下一个条件中,系统将执行一个条件来测试读取并存储在校验变量中的值是否等于 75。

值 75 表示系统设置为温度。如果读取值与 75 不同,系统将启动新的温度调节过程。

在此之后,系统将根据值的递增或递减来配置新值,直到用户按下设置按钮

最后,系统会将值75保存在EndVerif位置,并将温度值保存在EndTemp位置。这样可以在系统关闭时保持保存温度值。

EEPROM.write(EndVerif,75); 
EEPROM.write(EndTemp, temperature);

然后,将请求温度值并将该值存储在 TempSensor 变量中,如下所示。

sensors.requestTemperatures();            
float TempSensor = sensors.getTempCByIndex(0);

最后,如果温度与之前的值不同,系统会在屏幕上显示一个新值,如图 5 所示。

 
poYBAGOX2Y-AA4SjAAnzfZWoEFA381.jpg
图 5 - 环境温度值。
 

然后,它将读取的温度与设定值进行比较。如果它更大,LED蜂鸣器将被激活以引起操作员的注意。如果较小,则LED蜂鸣器将关闭。

致谢

感谢PCBWay支持我们的 YouTube 频道并生产和组装质量更好的 PCB。

Silícios 实验室感谢UTSOURCE提供电子元件。


声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉

评论(0)
发评论

下载排行榜

全部0条评论

快来发表一下你的评论吧 !

'+ '

'+ '

'+ ''+ '
'+ ''+ ''+ '
'+ ''+ '' ); $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code ==5){ $(pop_this).attr('href',"/login/index.html"); return false } if(data.code == 2){ //跳转到VIP升级页面 window.location.href="//m.obk20.com/vip/index?aid=" + webid return false } //是会员 if (data.code > 0) { $('body').append(htmlSetNormalDownload); var getWidth=$("#poplayer").width(); $("#poplayer").css("margin-left","-"+getWidth/2+"px"); $('#tips').html(data.msg) $('.download_confirm').click(function(){ $('#dialog').remove(); }) } else { var down_url = $('#vipdownload').attr('data-url'); isBindAnalysisForm(pop_this, down_url, 1) } }); }); //是否开通VIP $.get('/article/vipdownload/aid/'+webid,function(data){ if(data.code == 2 || data.code ==5){ //跳转到VIP升级页面 $('#vipdownload>span').text("开通VIP 免费下载") return false }else{ // 待续费 if(data.code == 3) { vipExpiredInfo.ifVipExpired = true vipExpiredInfo.vipExpiredDate = data.data.endoftime } $('#vipdownload .icon-vip-tips').remove() $('#vipdownload>span').text("VIP免积分下载") } }); }).on("click",".download_cancel",function(){ $('#dialog').remove(); }) var setWeixinShare={};//定义默认的微信分享信息,页面如果要自定义分享,直接更改此变量即可 if(window.navigator.userAgent.toLowerCase().match(/MicroMessenger/i) == 'micromessenger'){ var d={ title:'高温可编程报警开源分享',//标题 desc:$('[name=description]').attr("content"), //描述 imgUrl:'https://'+location.host+'/static/images/ele-logo.png',// 分享图标,默认是logo link:'',//链接 type:'',// 分享类型,music、video或link,不填默认为link dataUrl:'',//如果type是music或video,则要提供数据链接,默认为空 success:'', // 用户确认分享后执行的回调函数 cancel:''// 用户取消分享后执行的回调函数 } setWeixinShare=$.extend(d,setWeixinShare); $.ajax({ url:"//www.obk20.com/app/wechat/index.php?s=Home/ShareConfig/index", data:"share_url="+encodeURIComponent(location.href)+"&format=jsonp&domain=m", type:'get', dataType:'jsonp', success:function(res){ if(res.status!="successed"){ return false; } $.getScript('https://res.wx.qq.com/open/js/jweixin-1.0.0.js',function(result,status){ if(status!="success"){ return false; } var getWxCfg=res.data; wx.config({ //debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。 appId:getWxCfg.appId, // 必填,公众号的唯一标识 timestamp:getWxCfg.timestamp, // 必填,生成签名的时间戳 nonceStr:getWxCfg.nonceStr, // 必填,生成签名的随机串 signature:getWxCfg.signature,// 必填,签名,见附录1 jsApiList:['onMenuShareTimeline','onMenuShareAppMessage','onMenuShareQQ','onMenuShareWeibo','onMenuShareQZone'] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2 }); wx.ready(function(){ //获取“分享到朋友圈”按钮点击状态及自定义分享内容接口 wx.onMenuShareTimeline({ title: setWeixinShare.title, // 分享标题 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享给朋友”按钮点击状态及自定义分享内容接口 wx.onMenuShareAppMessage({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 type: setWeixinShare.type, // 分享类型,music、video或link,不填默认为link dataUrl: setWeixinShare.dataUrl, // 如果type是music或video,则要提供数据链接,默认为空 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ”按钮点击状态及自定义分享内容接口 wx.onMenuShareQQ({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到腾讯微博”按钮点击状态及自定义分享内容接口 wx.onMenuShareWeibo({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); //获取“分享到QQ空间”按钮点击状态及自定义分享内容接口 wx.onMenuShareQZone({ title: setWeixinShare.title, // 分享标题 desc: setWeixinShare.desc, // 分享描述 link: setWeixinShare.link, // 分享链接 imgUrl: setWeixinShare.imgUrl, // 分享图标 success: function () { setWeixinShare.success; // 用户确认分享后执行的回调函数 }, cancel: function () { setWeixinShare.cancel; // 用户取消分享后执行的回调函数 } }); }); }); } }); } function openX_ad(posterid, htmlid, width, height) { if ($(htmlid).length > 0) { var randomnumber = Math.random(); var now_url = encodeURIComponent(window.location.href); var ga = document.createElement('iframe'); ga.src = 'https://www1.elecfans.com/www/delivery/myafr.php?target=_blank&cb=' + randomnumber + '&zoneid=' + posterid+'&prefer='+now_url; ga.width = width; ga.height = height; ga.frameBorder = 0; ga.scrolling = 'no'; var s = $(htmlid).append(ga); } } openX_ad(828, '#berry-300', 300, 250);