Christian Tremblay
Christian Tremblay
@vkosuri Is using preprocessor better than a logical Adapter for speed reasons in the context of dealing with that kind of input ? Or is there another reason ?
When running BAC0 now, you have to deal with asyncio. One easy way is to start python using `python -m asyncio` and then you can import BAC0 and do your...
This can probably help your : https://github.com/ChristianTremblay/BAC0/blob/main/BAC0/core/devices/mixins/read_mixin.py#L165 reading the first element of objectList will give you the number of objects, then you can iterate the result using read and providing...
The script you show me creates 2 bacnet devices. One on 0xBAC0, the other one on 0xBAC1 The one with all the points added is on port 47809 (0xBAC1) The...
https://github.com/ChristianTremblay/BAC0/blob/main/tests/manual_test_create_device.py
object list is to create the local "image" of a remote controller. Not to create a local object in the running instance of BAC0. From the definition of your list,...
Try this : https://github.com/ChristianTremblay/BAC0/blob/main/tests/manual_test_create_device.py
Interesting use case... At first, device.json was meant to be optional.... as normally there should be a copy in the package.... Let me look at it What would you put...
`Task exception was never retrieved` This is telling us that something went wrong and the script ended up before getting all the answers. I highly suggest working inside a `asyn...
Another option would be an async function somewhere is called without `await`... the trace only shows bacpypes things.... wonder if it's in BAC0 or bacpypes....