Christian Tremblay

Results 114 comments of Christian Tremblay

When your device is created... you exit the async with loop the bacnet closes. Try doing something else. Or add a while true loop with await asyncio.sleep(0.1) in it... I...

I suspect there is one BACnet object not well defined in the device. You could read the objectList, then try to identify the object giving troubles... once done, you can...

I've never had to write to a LAV in the past, but it is probably feasable. Please note that any development on my side will be done on the async...

@michael-senva I actually don't have access to a device with LAV objects. I would be grateful if you could try the async branch and tell me what is happening with...

asyncio is a weird beast. If possible, run this code in a Jupyter Notebook. For now, it is the easiest way to run asyncio code I found. There is a...

Write access denied comes from the device normally. Are you sure you can write to it ? Or was that accompanied by another error, more specific about the format ?

If you start the REPL using `python -m asyncio` It works (I knew there was a way.... too much things on my plate lately) ![image](https://github.com/user-attachments/assets/7f68384f-2253-4ae8-8154-e6b66d8ecbbb)

Juste être sûr de comprendre.... You want to create an analog value object in your device on which you could write, via BACnet, from another device. Right ? Like a...

This is a common issue with docker as UDP broadcast are not passing through... Discovery will fail but I think you will be able to connect directly to a device...

Using docker, it's hard and I haven't done a lot of tests. Last time I worked on that, I found this : https://www.youtube.com/watch?v=bKFMS5C4CG0 But I haven't had time to fully...