Yuening Hong

Results 15 comments of Yuening Hong

Thank you for your time. I tried: > import BAC0 > > bacnet = BAC0.connect(ip='192.168.155.200/24') > bacnet.discover() > > print(bacnet.devices) There in the table I saw the device, it should...

But with import BAC0 > > bacnet = BAC0.connect(ip='192.168.155.200/24') > my_device = BAC0.device('192.168.155.200', 0, bacnet) The INFO became: > 2022-07-21 12:48:04,870 - INFO | 192.168.155.2 network number is 0 >...

Thank you. I used device ID 0, because `bacnet.whois` showed 2 devices: [('192.168.155.1', 930614), ('192.168.155.2', 0)] I want to look into the second one ('192.168.155.2', 0). Because from `bacnet.devices` the...

Thank you so much!!!

> try this....don't do a `BAC0.connect` but instead do a `BAC0.lite()` app and make reads, writes, releases, or what not to the BAC0.lite app directly. > > I played around...