diff --git a/.gitignore b/.gitignore index 48b1db9..9bce527 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,6 @@ target/ # Eclipse project files .classpath .project -.DS_Store \ No newline at end of file +.DS_Store +# idea +.idea/ \ No newline at end of file diff --git a/README.md b/README.md index 9273b1d..3e733bb 100644 --- a/README.md +++ b/README.md @@ -111,10 +111,16 @@ window笔记本电脑本地测试:**单网关**、**单前置节点**,每秒 - IOTGate-v3.x 规划中,增加集群版能力,简化部署方式 -### 关于多规约支持 -物联网虽然火起来,但目前业内还没有比较统一的通讯规约,MQTT是目前业界使用比较广泛的物联网通讯协议了,我看了下阿里最近弄出来的物联网平台其主要也是支持MQTT物联网设备的接入,但他毕竟不是唯一的通讯规约,光我自己知道的通讯都有好几种了,而且每一种规约的报文格式都各不相同,因此,所谓多规约支持,也不可能做到所有物联网规约全支持,我目前的想法是,通过多规约得基础功能和高级功能可以将比较流行物联网规约都能够支持! -那么IOTGate如何配置实现多规约支持呢? -IOTGate操作指南 +### 多规约支持 +#### modbus TCP +报文结构:![modbusTCP.png](files/modbusTcp.png) +配置信息:1,1,-1,4,2,0,0,9813,60 + +#### IEC 104 +配置信息:2,1,-1,1,1,0,0,9814,60 + +#### DLT 645 +配置信息:3,0,-1,9,1,0,2,9815,60 ### IOTGate功能架构图 ![IOTGate开源版功能架构图](https://images.gitee.com/uploads/images/2019/1019/191425_eac2830b_1038477.jpeg "IOTGate开源版设计图模.jpg") @@ -125,8 +131,8 @@ IOTGate操作指南 ![IOTGateConsole](https://images.gitee.com/uploads/images/2019/0331/152228_782eecd5_1038477.png "IOTGateConsole.png") ![规约维护](https://images.gitee.com/uploads/images/2019/0402/173605_1a4217c0_1038477.png "规约维护.png") -更多关于IOTGateConsole的说明请到博客中查看 - +更多关于IOTGateConsole的说明请到博客中查看 + ### 计划新增功能(企业版已存在,根据企业版的应用情况回馈至开源社区) - 单机规约心跳周期配置(已完成) - 数据加密 diff --git a/files/modbusTCP.png b/files/modbusTCP.png new file mode 100644 index 0000000..e308231 Binary files /dev/null and b/files/modbusTCP.png differ