如何在Python中使用BAC0 readRange

2024-09-30 04:34:17 发布

您现在位置:Python中文网/ 问答频道 /正文

大家好,我尝试使用python 3中的BAC0包来获取bacnet网络中多点的值。 我使用了如下内容:

bacnet = BAC0.lite(ip=x.x.x.x)
tmp_points = bacnet.readRange("11:2 analogInput 0 presentValue");

这似乎不太好:( 错误是:

BAC0.core.io.IOExceptions.NoResponseFromController: APDU Abort Reason : unrecognizedService

在文件中我只能找到

    def readRange(
        self,
        args,
        range_params=None,
        arr_index=None,
        vendor_id=0,
        bacoid=None,
        timeout=10,
    ):
        """
        Build a ReadProperty request, wait for the answer and return the value

        :param args: String with <addr> <type> <inst> <prop> [ <indx> ]
        :returns: data read from device (str representing data like 10 or True)

        *Example*::

            import BAC0
            myIPAddr = '192.168.1.10/24'
            bacnet = BAC0.connect(ip = myIPAddr)
            bacnet.read('2:5 analogInput 1 presentValue')

        Requests the controller at (Network 2, address 5) for the presentValue of
        its analog input 1 (AI:1).
        """

Tags: theip网络none内容forreaddata
1条回答
网友
1楼 · 发布于 2024-09-30 04:34:17

要从设备对象读取多个属性,必须使用readMultiple

readRange将从类似数组的属性读取(例如,TrendLogs对象将记录实现为数组,我们使用readRange使用记录块读取它们)

有关如何使用readMultiple的详细信息,请参见此处:https://bac0.readthedocs.io/en/latest/read.html#read-multiple

一个简单的例子是

bacnet = BAC0.lite()
tmp_points = bacnet.readMultiple("11:2 analogInput 0 presentValue description")

相关问题 更多 >

    热门问题