node-opcua基础连接读写普通变量
2021/9/15 22:08:25
本文主要是介绍node-opcua基础连接读写普通变量,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
JS菜鸟整理。
下载:
GitHub - node-opcua/node-opcua-sample: a simple OPCUA sample client to demonstrate how to use node-opcua SDKhttps://github.com/node-opcua/node-opcua-sample正常:
npm install
修改simple_client.js:
var opcua = require('node-opcua'); var nodeId = require("node-opcua-nodeid"); var async = require("async"); var DataType = opcua.DataType; var AttributeIds = opcua.AttributeIds; var connectionOption = {}; connectionOption.securityPolicy = opcua.SecurityPolicy.None; connectionOption.securityMode = opcua.MessageSecurityMode.None; connectionOption.keepSessionAlive = true; client = opcua.OPCUAClient.create(connectionOption); async function connect_opcua_client() { try{ await client.connect("opc.tcp://192.168.3.1:4840"); } catch (err) { console.log(err); return; } if (!client) { console.log("Client not yet created & connected, cannot getEndpoints!"); return; } // verbose_log("Create session ..."); try { if (!client) { return; } var userIdentity = {}; if (0) { userIdentity.userName = "XXXX"; userIdentity.password = "XXX."; userIdentity.type = opcua.UserTokenType.UserName; // New TypeScript API parameter } else { userIdentity.type = opcua.UserTokenType.Anonymous; } session = await client.createSession(userIdentity); if (!session) { console.log("Create session failed!"); return; } console.log("Create session sucees!"); } catch (err) { console.log(err); return; } //read value: var nodeIdS = "ns=1;s=XXXX"; try { const dataValue = await session.read({ nodeId:nodeIdS, attributeId: AttributeIds.Value }); if (dataValue.statusCode !== opcua.StatusCodes.Good) { console.log("Could not read ", nodeIdS); } else { console.log(" read value success = ", dataValue.toString()); } } catch(err) { console.log(err); return; } // var _toDataType = function (type) { // if (type === 'Boolean') { // return opcua.DataType.Boolean; // } else if (type === 'SByte') { // return opcua.DataType.SByte; // } else if (type === 'Byte') { // return opcua.DataType.Byte; // } else if (type === 'Int16') { // return opcua.DataType.Int16; // } else if (type === 'UInt16') { // return opcua.DataType.UInt16; // } else if (type === 'Int32') { // return opcua.DataType.Int32; // } else if (type === 'UInt32') { // return opcua.DataType.UInt32; // } else if (type === 'Int64') { // return opcua.DataType.Int64; // } else if (type === 'UInt64') { // return opcua.DataType.UInt64; // } else if (type === 'Float') { // return opcua.DataType.Float; // } else if (type === 'Double') { // return opcua.DataType.Double; // } else if (type === 'String') { // return opcua.DataType.String; // } else if (type === 'DateTime') { // return opcua.DataType.DateTime; // } else if (type === 'Guid') { // return opcua.DataType.Guid; // } else if (type === 'ByteString') { // return opcua.DataType.ByteString; // } // } //write value: try { var nodesToWrite = [ { nodeId: nodeIdS, attributeId: opcua.AttributeIds.Value, value: /*new DataValue(*/{ value: {/* Variant */ dataType: opcua.DataType.Double, value: 2.2 } } }]; session.write(nodesToWrite, function (err, statusCodes) { if (err) { console.log(' setValue error: ' + err); } }); } catch(err) { console.log(err); return; } console.log(' setValue susccess: !'); } connect_opcua_client();
这篇关于node-opcua基础连接读写普通变量的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11国产医疗级心电ECG采集处理模块
- 2025-01-10Rakuten 乐天积分系统从 Cassandra 到 TiDB 的选型与实战
- 2025-01-09CMS内容管理系统是什么?如何选择适合你的平台?
- 2025-01-08CCPM如何缩短项目周期并降低风险?
- 2025-01-08Omnivore 替代品 Readeck 安装与使用教程
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南