BACO Write Observation #550
tugrulgucluoutlook
started this conversation in
General
Replies: 2 comments
|
moving to issue page |
0 replies
|
a93cb91 (dev branch) should fix |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi everyone
I`m testing BAC0 write property like below .
And it appears only internal write (_write) produces a write property confirmed request and simple-ack on the network which is captured by wireshark.
For some reason synchronous write is not working. And with the asynchronous alternative return value is always None.
Is there a work around this ?
version information in infos.py is version = "2025.06.10"
import asyncio
import BAC0
async def both_write_methods():
async with BAC0.lite(ip='192.168.54.160', port=47808) as bacnet:
await asyncio.sleep(1)
asyncio.run(both_write_methods())
All reactions