|
@@ -0,0 +1,27 @@
|
|
|
+Bacnet 开发环境
|
|
|
+依赖版本:
|
|
|
+dotnet core 3.1
|
|
|
+开发环境:
|
|
|
+windows10,visual studio 2022
|
|
|
+配置文件
|
|
|
+appsetting.json
|
|
|
+
|
|
|
+ {
|
|
|
+ "appSettings": {
|
|
|
+ "BacSplitSize": "10", //这个批处理最好先不要随意改动
|
|
|
+ "WaitTime": "2000", // 恒定等待时间_不要改动
|
|
|
+ "HeartBeatInterval": "10000", //心跳包发送时间间隔_可以酌情改动
|
|
|
+ "LocalBacPort": "47808", //本地端口bacnet的端口_必须与settings.xsl 一致
|
|
|
+ "LocalUdpPort": "8756", //udp本地端口__必须与settings.xsl 一致
|
|
|
+ "RemoteUdpIP": "10.84.19.220", //远程udp的ip__必须与settings.xsl
|
|
|
+ "AcquisitionFrequency": "10", //采集因子_网络情况而定,hbase压力,本机资源压力
|
|
|
+ "RollCall": "true",// 不要动,此功能是定时循环call网内设备上报。
|
|
|
+ "RemoteUdpPort": "8851", // 必须与settings.xsl保持一致
|
|
|
+ "BuildingSign": "4401051003", //项目id,
|
|
|
+ "Gateway": "1", //不要动
|
|
|
+ "Localdebug": "true", //异常日志生成如果不需要则false
|
|
|
+ "SendType": "report",//不要动
|
|
|
+ "MeterSignPre": "BACnetIP.Channel_1.Device_",//不要动
|
|
|
+ "FuncId": "903",//不要动
|
|
|
+ "IgnoreFirstValue": "true"//不要动
|
|
|
+ }
|