node-red

Servomotor doesn't run in node-red

五迷三道 提交于 2020-06-13 11:28:32
问题 This is the first time I program a Raspberry PI and the first time I'm using Python, JavaScript or Node-Red. I'm trying to lift a gate by operating a servomotor in Node-RED. Basically, what I'm doing is take a picture of a license plate with my pi camera, process it, send it to OpenALPR, and get the license plate back as a msg.payload. Now, what I want to do is activate the servomotor if the msg.paylaod.results[0].plate matches the plate numbers I need. I'm trying to create a global variable

项目(二) esp32-cam 网页图像人脸

纵饮孤独 提交于 2020-05-03 22:05:09
https://randomnerdtutorials.com/esp32-cam-video-streaming-face-recognition-arduino-ide/ ESP32-CAM Pinout 下图显示了ESP32-CAM引脚排列(AI-Thinker模块)。 图像源 - Seeed Studio 有三个 GND 引脚和两个引脚用于电源: 3.3V 或 5V 。 GPIO 1 和 GPIO 3 是串行引脚。 您需要这些引脚才能将代码上传到您的电路板。 此外, GPIO 0 也起着重要作用,因为它确定ESP32是否处于闪烁模式。 当 GPIO 0 连接到 GND时 ,ESP32处于闪烁模式。 以下引脚内部连接到microSD卡读卡器: GPIO 14:CLK GPIO 15:CMD GPIO 2:数据0 GPIO 4:数据1(也连接到板载LED) GPIO 12:数据2 GPIO 13:数据3 视频流服务器 按照以下步骤使用您可以在本地网络上访问的ESP32-CAM构建视频流式Web服务器。 1.安装ESP32插件 在本例中,我们使用Arduino IDE对ESP32-CAM板进行编程。 因此,您需要安装Arduino IDE以及ESP32插件。 如果您还没有安装ESP32插件,请按照下一个教程之一进行操作: 在Arduino IDE中安装ESP32板

使用树莓派搭建温湿度监控告警系统

流过昼夜 提交于 2020-04-12 02:47:09
本文作者:天工智能物联网 简介 本文档介绍了基于树莓派+百度天工(物接入、TSDB、物可视)快速搭建一个环境温湿度监测告警系统。帮助用户熟悉天工物接入的接入方式、物影子概念以及使用方式等内容,快速搭建自己物联网硬件和应用。 阅读本示例前建议先熟悉快速入门文档。 场景描述 该场景演示物联网应用场景中常用的功能,包括设备接入、数据上报、数据存储、数据展示、远程控制、配置下发等。 硬件设计 首先我们设计了一款智能温湿度监测仪,监测仪运行时会实时监测当前所处环境的温湿度,同时可以设置温湿度的告警值,当温湿度达到设定值时,相应的告警灯亮起——这是设备硬件部分具备的功能,还未涉及到物联网 设备接入 为了能够实时查看到环境温信息,进而需要将设备接入物联网平台,如果当前环境温湿度达到设置的阈值,触发设备告警灯亮起,并上报设备当前状态和温湿度信息,正常情况下则每30秒上报一次当前温湿度信息到平台 配置下发 通过远程向监测仪下发配置信息,修改温湿度的告警值 远程控制 硬件部分具备告警指示灯功能,温度、湿度值分别达到告警值时,对应的指示灯会亮起并保持常亮,通过远程指令消除告警状态熄灭指示灯 数据存储(拓展) 平台接收到信息后可以将温湿度数据存储,以便进行数据展示、分析 数据展示(拓展) 设备接入平台后,我们通过大屏的对实时和历史数据进行仪表盘、图表等展示监控,同时可展示告警状态 硬件清单 树莓派3B+

使用树莓派搭建温湿度监控告警系统

南楼画角 提交于 2020-04-10 02:57:41
本文作者:天工智能物联网 简介 本文档介绍了基于树莓派+百度天工(物接入、TSDB、物可视)快速搭建一个环境温湿度监测告警系统。帮助用户熟悉天工物接入的接入方式、物影子概念以及使用方式等内容,快速搭建自己物联网硬件和应用。 阅读本示例前建议先熟悉快速入门文档。 场景描述 该场景演示物联网应用场景中常用的功能,包括设备接入、数据上报、数据存储、数据展示、远程控制、配置下发等。 硬件设计 首先我们设计了一款智能温湿度监测仪,监测仪运行时会实时监测当前所处环境的温湿度,同时可以设置温湿度的告警值,当温湿度达到设定值时,相应的告警灯亮起——这是设备硬件部分具备的功能,还未涉及到物联网 设备接入 为了能够实时查看到环境温信息,进而需要将设备接入物联网平台,如果当前环境温湿度达到设置的阈值,触发设备告警灯亮起,并上报设备当前状态和温湿度信息,正常情况下则每30秒上报一次当前温湿度信息到平台 配置下发 通过远程向监测仪下发配置信息,修改温湿度的告警值 远程控制 硬件部分具备告警指示灯功能,温度、湿度值分别达到告警值时,对应的指示灯会亮起并保持常亮,通过远程指令消除告警状态熄灭指示灯 数据存储(拓展) 平台接收到信息后可以将温湿度数据存储,以便进行数据展示、分析 数据展示(拓展) 设备接入平台后,我们通过大屏的对实时和历史数据进行仪表盘、图表等展示监控,同时可展示告警状态 硬件清单 树莓派3B+

使用树莓派搭建温湿度监控告警系统

吃可爱长大的小学妹 提交于 2020-04-10 02:48:21
本文作者:天工智能物联网 简介 本文档介绍了基于树莓派+百度天工(物接入、TSDB、物可视)快速搭建一个环境温湿度监测告警系统。帮助用户熟悉天工物接入的接入方式、物影子概念以及使用方式等内容,快速搭建自己物联网硬件和应用。 阅读本示例前建议先熟悉快速入门文档。 场景描述 该场景演示物联网应用场景中常用的功能,包括设备接入、数据上报、数据存储、数据展示、远程控制、配置下发等。 硬件设计 首先我们设计了一款智能温湿度监测仪,监测仪运行时会实时监测当前所处环境的温湿度,同时可以设置温湿度的告警值,当温湿度达到设定值时,相应的告警灯亮起——这是设备硬件部分具备的功能,还未涉及到物联网 设备接入 为了能够实时查看到环境温信息,进而需要将设备接入物联网平台,如果当前环境温湿度达到设置的阈值,触发设备告警灯亮起,并上报设备当前状态和温湿度信息,正常情况下则每30秒上报一次当前温湿度信息到平台 配置下发 通过远程向监测仪下发配置信息,修改温湿度的告警值 远程控制 硬件部分具备告警指示灯功能,温度、湿度值分别达到告警值时,对应的指示灯会亮起并保持常亮,通过远程指令消除告警状态熄灭指示灯 数据存储(拓展) 平台接收到信息后可以将温湿度数据存储,以便进行数据展示、分析 数据展示(拓展) 设备接入平台后,我们通过大屏的对实时和历史数据进行仪表盘、图表等展示监控,同时可展示告警状态 硬件清单 树莓派3B+

parse array result from nodered and mysql

不问归期 提交于 2020-01-22 02:15:23
问题 How can I extract the value "Al Hidaya centre" from the mysql result below, I should generally get "Al Hidaya centre" as the result from the mysql query, however I am getting this mambo jumbo with the result as well. i have tried the following msg.payload[3] but this only gives me [ { "device_name": "Al Hidaya centre" } ] mysql result in nodered mysql node: { "fieldCount": 0, "affectedRows": 0, "insertId": 0, "serverStatus": 10, "warningCount": 0, "message": "", "protocol41": true,

What server address (mosquitto broker url) should I use to connect node-red to mosquitto?

≯℡__Kan透↙ 提交于 2020-01-16 13:10:50
问题 My situation is currently I have two computers. One is my computer, the other is Amazon Web Services. Node-red is installed on my computer, and mosquitto is installed on Amazon Web Services (Photo 1). I run mosquitto on Amazon Web Services, and type mosquitto_sub -t "test" for receive data.(photo 2) I need to enter 'server' (mosquitto broker url) and 'topic' in node-red to send data from node-red to mosquitto. Currently I have entered 172.26.12.244:1880 and 'test'. But node-red and mosquitto

extract json with nodered

醉酒当歌 提交于 2020-01-16 09:09:39
问题 I want to extract json part in a message with node red I receive the message in node red but I can't extract the data exemple of a message: POST / HTTP/1.1 Host: xxx.xx.xxx.5:9000 User-Agent: libcurl-agent/1.0 Content-type: application/json Accept: application/json Content-Length: 526 { "timestamp": 1571997083, "data": { "temperature": 20.613545532227, "humidity": 61.3828125, "battery": 3.47 }, "frame": "814962xxxx16a1dc5", "gatewayID": "AA555Axxxx0xx964", "othersGW": [], "clientID": "xxxx",

extract json with nodered

北慕城南 提交于 2020-01-16 09:09:10
问题 I want to extract json part in a message with node red I receive the message in node red but I can't extract the data exemple of a message: POST / HTTP/1.1 Host: xxx.xx.xxx.5:9000 User-Agent: libcurl-agent/1.0 Content-type: application/json Accept: application/json Content-Length: 526 { "timestamp": 1571997083, "data": { "temperature": 20.613545532227, "humidity": 61.3828125, "battery": 3.47 }, "frame": "814962xxxx16a1dc5", "gatewayID": "AA555Axxxx0xx964", "othersGW": [], "clientID": "xxxx",

Node-Red, LoraWan Actility plattform

岁酱吖の 提交于 2020-01-14 05:34:07
问题 im trying to learn how to add a http get request for the Actility plattform in Node red. For now i only recive an error 401 that the authorization bearer is not included. Setup is done like this: I get two codes from the plattform curl -X GET --header 'Accept: application/json' --header 'Authorization: Bearer xxx' 'https://dx-api.thingpark.com/core/latest/api/devices?deviceEUI=xx&healthState=ACTIVE&statistics=true&extendedInfo=true' First is the token bearer. second is the request url. https: