×

使用Google Assistant监控室温

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

王鑫

分享资料个

描述

描述

该项目帮助用户了解他/她当前的室温,并根据温度建议是否打开空调或加热器。

所有这一切都是通过向 Google 助理发出语音命令“嘿 Google 询问 wayscript 触发器以运行 bolttemp”来完成的,用户在几秒钟内就会得到响应。这也可以与 Alexa 和 Siri 等其他语音助手集成,在这个项目中,我正在与 Google Assistant 集成。

pYYBAGOAN9eAJDEVAAArhH7WZmw83.jpeg
谷歌助理回复
 

** 'bolttemp' 是我在 WayScript 上的脚本名称

程序

第 1 步:硬件设置

1. 将 LM-35 传感器的 VCC 引脚连接到 Bolt 设备的 5V 引脚。

2. 将 LM-35 传感器的 GND 引脚连接到 Bolt 设备的 GND 引脚。

3. 将 LM-35 传感器的模拟输出引脚连接到 Bolt 设备的模拟输入 (A0) 引脚。

  • 使用公对母跳线将温度传感器连接到螺栓模块
poYBAGN6Xj-AOQ7dAAAQbqwQXeE55.jpeg
LM-35传感器引脚
 
poYBAGOX0hWAKymvAAHKd9T_ycI39.jpeg
硬件设置
 

完成所有连接后,打开螺栓模块的电源。确保没有任何丢失的连接。

蓝色 LED 表示模块已上电,绿色 LED 表示模块已通过 wifi 连接到螺栓云。

第 2 步:获取 Bolt API 密钥和设备 ID

登录cloud.boltiot.com并复制设备 ID。

前往 API 部分以查找 API 密钥(如果已禁用,请启用该密钥,然后单击“生成 API 密钥”)。

pYYBAGOX0iKAGK_7AADXB235ZXU223.jpg
从螺栓云获取 API 密钥
 

将 API 密钥和 Bolt ID 安全地保存在文本文件中以备将来使用。

第 3 步:为 Google 助手触发器设置 WayScript

前往www.wayscript.com并创建一个免费帐户。您也可以使用 LinkedIn 或 github 注册。

通过单击屏幕右上角的按钮创建一个新脚本。

1. 创建触发器

点击“添加触发器”并从列表中选择 Google Assistant。首次使用此模块时,您必须连接到您的 Google 帐户并将其链接到 WayScript。

poYBAGOX0iWAC4FCAAAs3pNWpEE717.jpg
创建触发器
 

2.执行python脚本从温度传感器获取数据

由于我们希望此 Google 助手触发器执行 python 脚本,因此单击添加步骤并选择 python 并粘贴以下代码。

pYYBAGOX0i2AJKazAAAZQbeXJI8804.jpg
执行python代码记录温度
 

将 boltiot 添加到 request.txt文件

poYBAGOX0jGARzKiAAAZWfjj2LI391.jpg
将boltiot添加到requirements.txt文件
 
from boltiot import Bolt
import json, time

API_KEY = 'Your API_KEY'
DEVICE_ID = 'Your BOLT_ID'
mybolt = Bolt(API_KEY, DEVICE_ID)
response = mybolt.analogRead('A0')
data = json.loads(response)
if str(data['value']) == 'Device is offline':
    print("Device is offline ")
    outputs[ 'MessageBack' ] = 'Device is offline'

else:
    sensor_value = int(data['value'])
    temp =  round(((100*sensor_value)/1024),1) #converting sensor value to degrees celsius

    print ("The current room temperature is", temp, "degrees celsius")
    outputs[ 'temperature' ] = 'The current room temperature is ' + str(te                mp) + ' degrees celsius'

'''Conditions to check the temperature and return the suitable response depending on the temperature range '''

    if temp >= 30 and temp <= 40:
        print ("Turn on the fan/Ac")
        outputs[ 'MessageBack' ] = 'Turn on the fan/AC'

    elif temp >= 18 and temp < 30:
        print ("Enjoy the natural winds !!!")
        outputs[ 'MessageBack' ] = 'Enjoy the natural winds !!!'

    elif temp >= -10 and temp < 18:
        outputs[ 'MessageBack' ] = 'Turn on the heaters'

    else:
        outputs[ 'MessageBack' ] = 'Please diagnose the temperature sensor'

通过将其置于 Google 助手触发器下,此 python 脚本将在收到消息时执行,并记录来自 LM-35 传感器的温度并将数据传递给 Bolt 云。此代码输出 2 个变量,即温度MessageBack。

代码说明

  • 初始化螺栓模块
mybolt = Bolt(API_KEY, DEVICE_ID)
  • 从模拟输入 (A0) 引脚获取传感器值
response = mybolt.analogRead('A0')
  • Bolt Cloud 返回的响应需要转换成 JSON 对象以方便使用。以下代码将来自 Bolt Cloud 的响应转换为 JSON 对象。
data = json.loads(response)
  • 简单的公式将从 LM-35 传感器获得的传感器值转换为以摄氏度为单位的温度,并将其四舍五入到小数点后 1 位以方便阅读。
temp =  round(((100*sensor_value)/1024),1)

3. 回传响应

现在我们已经在 python 模块中创建了响应并接收了传感器读数,让我们将其传递回用户的 Google 助手。

pYYBAGOX0jWAFnoYAABiTxZ1xoo559.jpg
脚本的工作流程
 

我们可以将我们想要的响应写入消息的正文中。这里让我们将变量temperatureMessageBack作为文本和语音传递给用户。

poYBAGOX0jmAWLzeAAAaDLsv0ZU929.jpg
将响应传递给用户
 

当从 Google 助手触发时,这将直接将 python 响应返回给用户。

输出截图

pYYBAGOX0kGAGw-DAABWhwWI1TY61.jpeg
 
poYBAGOX0kaARliRAABVaWNTg9U63.jpeg
 
 
 
 
poYBAGOX0kmAIQ1gAABbAw5ciJ841.jpeg
 
1 / 2由于设置中的连接丢失而导致的错误
 
pYYBAGOX0k6AU814AABbEywSYZA44.jpeg
螺栓模块未打开
 

** BoltTemp 是我在 WayScript 上的脚本名称。您可以为脚本提供任何合适的名称。


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

评论(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.lene-v.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:'使用Google Assistant监控室温',//标题 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.lene-v.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);