<
From version < 89.1 >
edited by Kilight Cao
on 2023/03/27 16:58
To version < 90.1 >
edited by Kilight Cao
on 2023/03/27 16:59
>
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -15,7 +15,6 @@
15 15  * LPS8v2
16 16  * MS20
17 17  
18 -
19 19  = 2.  Development Guide =
20 20  
21 21  
... ... @@ -278,9 +278,97 @@
278 278  /etc/influxdb/influxdb.conf
279 279  )))
280 280  
281 -= 3. How to install ChirpStack =
282 282  
281 +== 2.7 How to install BACnet ==
283 283  
283 +(% class="box infomessage" %)
284 +(((
285 +wget [[http:~~/~~/dragino.vicp.io:6080/bacnet/dragino-bacnet-apps-hp0c-2023-03-01.deb>>url:http://dragino.vicp.io:6080/bacnet/dragino-bacnet-apps-hp0c-2023-03-01.deb]]
286 +dpkg -i dragino-bacnet-apps-hp0c-2023-03-01.deb
287 +)))
288 +
289 +[[image:image-20230327152105-1.png||height="163" width="933"]]
290 +
291 +
292 +=== 2.7.1 Configure BACnet ===
293 +
294 +
295 +After BACnet is installed, run commands to modify BACnet configurations
296 +
297 +Note: device_port and bacnet_ip_port are not set to the same
298 +
299 +(% class="box infomessage" %)
300 +(((
301 +nano /etc/config/bacnet
302 +)))
303 +
304 +Examples:
305 +
306 +(% class="box infomessage" %)
307 +(((
308 +config settings 'general'
309 + option bacnet_ip '10.130.2.80'  #The IP address of the BACnetIP network, here basically the same IP as the bbmd address below
310 + option bacnet_ip_port '47808'  #As with bbmd_port, the purpose of this is to register a Bacnet Server application as a bbmd registration server
311 + option bbmd_address '10.130.2.80'  #bbmd is the BACnet registration server. Only one bbmd server is required in the same ip network
312 + option bbmd_port '47808'  #In general, 47808 is used as the default port
313 + option bacnet_dev_count '2'  #Here is the number of BACnet devices that need to be simulated, if the number is 2, then the following settings must have 2, which are bacdev_1, bacdev_2
314 +
315 +config settings 'bacdev_1'
316 + option device_name 'LHT65N-1'  #The identification name of the bacnet device
317 + option device_id '10001'  #The unique identification code in the same network segment of BACnet,Scope is(1 - 4194302)
318 + option device_port '47912'  #The IP port occupied by Bacnet when it starts, Scope is (1024 - 65535)
319 +
320 +config settings 'bacdev_2'
321 + option device_name 'LHT65N-2'
322 + option device_id '10002'
323 + option device_port '47913'  
324 +)))
325 +
326 +=== 2.7.2 Run BACnet ===
327 +
328 +
329 +After the configuration is complete, run the following command to start BACnet, The following are two ways to run BACnet:
330 +
331 +(1)With /etc/config/bacnet configuration, and to run the registration server on the current machine, start it with the following command (configure the /etc/config/bacnet file correctly):
332 +
333 +(% class="box infomessage" %)
334 +(((
335 +bacserver -c -s
336 +)))
337 +
338 +(2)Without /etc/config/bacnet, and to run the registration server on the current machine, start it with the following command:
339 +
340 +(% class="box infomessage" %)
341 +(((
342 +bacserver -s -a 10.130.2.80 -p 47808
343 +)))
344 +
345 +This command simulates two devices, with device IDs 47910 and 47911
346 +
347 +Enter bacserver -h to output help
348 +
349 +(% class="box infomessage" %)
350 +(((
351 +bacserver -h
352 +)))
353 +
354 +[[image:image-20230327154700-3.png]]
355 +
356 +=== 2.7.3 Read devices and modify devices ===
357 +
358 +
359 +Enter baccli -h to output help
360 +
361 +(% class="box infomessage" %)
362 +(((
363 +baccli -h
364 +)))
365 +
366 +[[image:image-20230327165836-1.png]]
367 +
368 +Examples:
369 +
370 +
284 284  = 4. Package Maintain Note =
285 285  
286 286  == 4.1 Default Package Maintain System ==
Copyright ©2010-2022 Dragino Technology Co., LTD. All rights reserved
Dragino Wiki v2.0